23 lines
607 B
Plaintext
23 lines
607 B
Plaintext
# Description: D-Bus proxy
|
|
# URL: https://github.com/flatpak/xdg-dbus-proxy
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: glib
|
|
# Optional: docbook-xsl
|
|
|
|
name=xdg-dbus-proxy
|
|
version=0.1.1
|
|
release=1
|
|
source=(https://github.com/flatpak/xdg-dbus-proxy/releases/download/$version/$name-$version.tar.xz
|
|
xdg-dbus-proxy.1)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
prt-get isinst docbook-xsl || install -Dm644 $SRC/xdg-dbus-proxy.1 $PKG/usr/share/man/man1/xdg-dbus-proxy.1 || \
|
|
PKGMK_XDG_DBUS_PROXY+=' --disable-man'
|
|
|
|
./configure --prefix=/usr ${PKGMK_XDG_DBUS_PROXY}
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|