blob: 25b83985ed714b7b5a908210035dfec732f74880 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Description: Bibliothèque QT4 pour Avahi
# URL: http://www.avahi.org/
# Maintainer: NuTyX core team
# Packager: piernov <piernov@piernov.org>
# Depends on: avahi, qt
# Run on: avahi,qt
name=avahi-qt4
version=0.6.30
release=2
source=(http://www.avahi.org/download/avahi-$version.tar.gz)
build() {
cd avahi-$version
PYTHON=python2 ./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--disable-gtk3 \
--disable-gtk \
--disable-pygtk \
--disable-qt3 \
--enable-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 -C avahi-common
make -C avahi-qt
make DESTDIR=$PKG install -C avahi-qt
make DESTDIR=$PKG install-pkgconfigDATA
mkdir -p $PKG/usr/lib/pkgconfig
cp avahi-qt4.pc $PKG/usr/lib/pkgconfig
rm $PKG/usr/lib/pkgconfig/avahi-{core,client,compat-howl,compat-libdns_sd,glib,gobject}.pc
}
|