mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 16:47:17 +08:00
32 lines
752 B
Bash
32 lines
752 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=dconf
|
|
pkgver=0.12.0
|
|
pkgrel=1
|
|
pkgdesc="A low-level configuration system."
|
|
arch=('x86_64')
|
|
url="http://live.gnome.org/dconf"
|
|
license=('LGPL2.1')
|
|
depends=('glib2')
|
|
makedepends=('vala' 'gobject-introspection')
|
|
install=dconf.install
|
|
source=("http://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz")
|
|
md5sums=('6aec9d37fca1614cd672bc5b2215c9f3')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/dconf --disable-editor
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et: |