mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 12:44:37 +08:00
26 lines
640 B
Bash
26 lines
640 B
Bash
|
|
||
|
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
|
||
|
}
|