blob: 002ac75f7adf1c399056c332f53e59385323a7f6 (
plain)
1 # Description: A system that facilitates service discovery on local networks
2 # URL: http://avahi.org/
3 # Maintainer: Matt Housh, jaeger at crux dot nu
4 # Depends on: libdaemon, dbus, dbus-python, pygtk, libglade
5
6 name=avahi
7 version=0.6.13
8 release=1
9 source=(http://avahi.org/download/$name-$version.tar.gz \
10 rc.$name)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr \
15 --localstatedir=/var \
16 --mandir=/usr/man \
17 --disable-qt3 \
18 --disable-qt4 \
19 --disable-doxygen-doc \
20 --disable-doxygen-dot \
21 --with-avahi-user=avahi \
22 --with-avahi-group=avahi \
23 --with-distro=none \
24 --disable-mono \
25 --disable-monodoc \
26 --enable-compat-howl \
27 --enable-compat-libdns_sd \
28 --with-dbus-sys=/usr/etc/dbus-1/system.d
29 make
30 make DESTDIR=$PKG install
31 install -D -o root -g root -m 0755 $SRC/rc.$name \
32 $PKG/etc/rc.d/$name
33 }
|