opt/dbus-glib/Pkgfile

25 lines
574 B
Plaintext
Raw Normal View History

2017-09-23 17:31:24 +02:00
# Description: D-Bus GLib bindings
# URL: https://freedesktop.org/wiki/Software/DBusBindings
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: dbus glib
name=dbus-glib
2021-03-28 01:03:39 +01:00
version=0.112
release=2
source=(https://dbus.freedesktop.org/releases/$name/$name-$version.tar.gz)
build() {
cd $name-$version
2021-01-26 14:10:02 +01:00
prt-get isinst bash-completion || PKGMK_DBUSGLIB+=' --enable-bash-completion=no'
./configure $PKGMK_DBUSGLIB \
2021-01-26 14:10:02 +01:00
--prefix=/usr \
--libexecdir=/usr/lib/dbus-glib \
--disable-static
make
make DESTDIR=$PKG install
2021-01-26 14:10:02 +01:00
2017-09-23 17:31:24 +02:00
rm -r $PKG/usr/share/gtk-doc
}