33 lines
803 B
Plaintext
33 lines
803 B
Plaintext
# Description: A system that facilitates service discovery on local networks
|
|
# URL: http://avahi.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: libdaemon, dbus, pygtk, libglade
|
|
|
|
name=avahi
|
|
version=0.6.13
|
|
release=1
|
|
source=(http://avahi.org/download/$name-$version.tar.gz \
|
|
rc.$name)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--localstatedir=/var \
|
|
--disable-qt3 \
|
|
--disable-qt4 \
|
|
--disable-doxygen-doc \
|
|
--disable-doxygen-dot \
|
|
--with-avahi-user=avahi \
|
|
--with-avahi-group=avahi \
|
|
--with-distro=none \
|
|
--disable-mono \
|
|
--disable-monodoc \
|
|
--enable-compat-howl \
|
|
--enable-compat-libdns_sd \
|
|
--with-dbus-sys=/usr/etc/dbus-1/system.d
|
|
make
|
|
make DESTDIR=$PKG install
|
|
install -D -o root -g root -m 0755 $SRC/rc.$name \
|
|
$PKG/etc/rc.d/$name
|
|
}
|