core/gsettings-desktop-schemas/PKGBUILD

26 lines
640 B
Bash
Raw Normal View History

pkgname=gsettings-desktop-schemas
pkgver=3.21.4
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=('6d195bfe8d4af56b2cfb46417473ecad6e41b7254ff226bb9d20c8944310c15f')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--disable-schemas-compile
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR=$pkgdir install
}