diff options
Diffstat (limited to 'avahi-gtk/Pkgfile')
-rw-r--r-- | avahi-gtk/Pkgfile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/avahi-gtk/Pkgfile b/avahi-gtk/Pkgfile new file mode 100644 index 0000000..c988c7a --- /dev/null +++ b/avahi-gtk/Pkgfile @@ -0,0 +1,48 @@ +# Description: Service de DNS +# URL: http://www.avahi.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: avahi, gtk3, gobject-introspection +# Run on: avahi,gtk3 + +name=avahi-gtk +version=0.6.30 +release=1 +source=(http://www.avahi.org/download/avahi-$version.tar.gz) + +build() { + cd avahi-$version + + PYTHON=python2 ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --enable-gtk3 \ + --enable-gtk \ + --disable-qt3 \ + --disable-qt4 \ + --disable-monodoc \ + --disable-doxygen-doc \ + --disable-xmltoman \ + --disable-mono \ + --enable-compat-libdns_sd \ + --enable-compat-howl \ + --with-distro=lfs \ + --with-avahi-priv-access-group=network \ + --with-autoipd-user=avahi \ + --with-autoipd-group=avahi \ + --with-systemdsystemunitdir=/lib/systemd/system + + mkdir -p $PKG/usr/{bin,include,lib} + + for i in avahi-common avahi-client avahi-glib avahi-core; do + make -C $i + done + + for i in avahi-ui avahi-python/avahi-discover avahi-discover-standalone; do + make -C $i + make DESTDIR=$PKG install -C $i + done + + sed -i '1c #!/usr/bin/python2' $PKG/usr/bin/avahi-discover +} |