20 lines
418 B
Plaintext
20 lines
418 B
Plaintext
# Description: A low-level configuration system.
|
|
# URL: http://www.gnome.org/
|
|
# Packager: pierre at nutyx dot org
|
|
# Depends on: dbus gtk3 libxml2 vala
|
|
|
|
name=dconf
|
|
version=0.24.0
|
|
release=2
|
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/usr/lib/dconf
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|