34 lines
802 B
Plaintext
34 lines
802 B
Plaintext
# Description: A system which facilitates service discovery on a local network via the mDNS/DNS-SD protocol suite
|
|
# URL: http://www.avahi.org/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: avahi dbus-32 gdbm-32 glib-32 libcap-32 libdaemon-32
|
|
|
|
name=avahi-32
|
|
version=0.7
|
|
release=1
|
|
source=(http://avahi.org/download/${name:0:5}-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ${name:0:5}-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--with-distro=none \
|
|
--disable-gtk \
|
|
--disable-gtk3 \
|
|
--disable-qt3 \
|
|
--disable-qt4 \
|
|
--disable-python \
|
|
--disable-pygobject \
|
|
--disable-python-dbus \
|
|
--disable-mono \
|
|
--disable-monodoc \
|
|
--disable-nls \
|
|
--enable-compat-libdns_sd
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,sbin,etc,include,share}
|
|
}
|