summaryrefslogtreecommitdiffstats
path: root/extra/avahi/Pkgfile
blob: 03afa821ff512ca559822e278666d803c30eab78 (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
47
48
49
50
# Description: Service de DNS
# URL: http://www.avahi.org/
# Maintainer: NuTyX core team 
# Packager: thierryn1 at hispeed dot ch
# Depends on: libdaemon, dbus, dbus-python, nss-mdns, libglade, libcap, pygtk
# Run on:


name=avahi
version=0.6.28
release=4
source=(http://www.avahi.org/download/avahi-$version.tar.gz\
	network-wired.png)

build() {
	cd $name-$version

	PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
		--sysconfdir=/etc \
		--localstatedir=/var/lib \
		--disable-qt3 \
		--disable-qt4 \
		--disable-gtk3 \
		--disable-monodoc \
		--disable-doxygen-doc \
		--disable-xmltoman \
		--enable-compat-libdns_sd \
		--enable-compat-howl \
		--with-distro=none \
		--disable-gdbm \
		--disable-mono \
		--with-avahi-priv-access-group=network \
		--enable-autoipd \
		--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,discover}	
}