core/gsettings-desktop-schemas/PKGBUILD
2017-10-23 00:10:01 +02:00

26 lines
640 B
Bash

pkgname=gsettings-desktop-schemas
pkgver=3.24.1
pkgrel=1
pkgdesc="Shared GSettings schemas for the desktop"
arch=('x86_64')
url="http://live.gnome.org/"
license=(GPL)
depends=('glib2')
makedepends=('intltool' 'gobject-introspection')
install=$pkgname.install
source=(https://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
sha256sums=('76a3fa309f9de6074d66848987214f0b128124ba7184c958c15ac78a8ac7eea7')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--disable-schemas-compile
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}