xfce4/xfconf/Pkgfile

30 lines
551 B
Plaintext
Raw Normal View History

2019-07-19 01:31:37 +02:00
# Description: D-Bus based configuration storage system
# URL: https://www.xfce.org
2023-06-29 15:54:35 -04:00
# Maintainer: mac-a-r0ni, j at lngn dot net
2020-04-08 18:58:42 +02:00
# Depends on: libxfce4util
2019-04-24 17:15:26 +02:00
name=xfconf
2023-06-29 15:54:35 -04:00
version=4.18.1
release=1
2023-07-04 04:55:48 -04:00
source=(http://archive.xfce.org/src/xfce/$name/${version:0:4}/$name-$version.tar.bz2)
2019-04-24 17:15:26 +02:00
build() {
2019-05-11 19:09:44 +02:00
cd $name-$version
2019-07-06 22:05:37 +02:00
2023-06-29 16:06:07 -04:00
# cp $SRC/configure .
2020-09-30 02:17:16 +02:00
2020-04-08 18:58:42 +02:00
./configure \
--prefix=/usr \
2020-09-30 02:17:16 +02:00
--sysconfdir=/etc \
2023-06-29 16:10:29 -04:00
--libexecdir=/usr/lib/$name \
2023-06-29 15:54:35 -04:00
--disable-debug
2020-04-08 18:58:42 +02:00
make
make DESTDIR=$PKG install
2020-09-30 17:43:21 +02:00
rm -r $PKG/usr/share/locale
2020-04-08 18:58:42 +02:00
rm -r $PKG/usr/share/gtk-doc
2020-09-30 02:17:16 +02:00
2019-04-24 17:15:26 +02:00
}