diff options
author | tnut <tnut at nutyx dot com> | 2012-04-03 21:47:04 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-04-03 21:47:04 +0200 |
commit | bde3e30c3e4533a208c135a95ce58c0c354de454 (patch) | |
tree | b7256f1d8cb2c64fe44caf670f98368fb6d85818 /avahi/Pkgfile | |
parent | 23f11a68fac55649624ed7e45c15414f159eb0df (diff) | |
download | nutyx-pakxe-bde3e30c3e4533a208c135a95ce58c0c354de454.tar.gz nutyx-pakxe-bde3e30c3e4533a208c135a95ce58c0c354de454.tar.bz2 nutyx-pakxe-bde3e30c3e4533a208c135a95ce58c0c354de454.tar.xz nutyx-pakxe-bde3e30c3e4533a208c135a95ce58c0c354de454.zip |
avahi-server est un service
Diffstat (limited to 'avahi/Pkgfile')
-rw-r--r-- | avahi/Pkgfile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/avahi/Pkgfile b/avahi/Pkgfile new file mode 100644 index 000000000..2a8479b80 --- /dev/null +++ b/avahi/Pkgfile @@ -0,0 +1,45 @@ +# Description: Service de DNS +# URL: http://www.avahi.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: intltool, libdaemon, dbus, dbus-python, gobject-introspection +# Run on: libdaemon,dbus,dbus-python,libglade + +name=avahi +version=0.6.30 +release=2 +source=(http://www.avahi.org/download/avahi-$version.tar.gz + network-wired.png) + +build() { + cd $name-$version + + PYTHON=python2 ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --disable-gtk \ + --disable-gtk3 \ + --disable-pygtk \ + --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 + make + make DESTDIR=$PKG install + + sed -i -e 's/netdev/network/g' $PKG/etc/dbus-1/system.d/avahi-dbus.conf + mkdir -v -p $PKG/usr/share/pixmaps + install -m 644 ../network-wired.png $PKG/usr/share/pixmaps/network-wired.png + rm -r $PKG/{etc/avahi,var,usr/share/man/man8,usr/sbin} + sed -i '1c #!/usr/bin/python2' $PKG/usr/bin/avahi-bookmarks +} |