blob: ce3a3389cda23de651f6d9e4fce40b5e12818f1b (
plain)
1 # Description: Network Sniffer with nice GTK+ UI
2 # URL: http://www.wireshark.org
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Martin Opel, mo at obbl-net dot de
5 # Depends on: gtk3 libpcap libpcre
6
7 name=wireshark
8 version=1.12.1
9 release=1
10 source=(http://www.$name.org/download/src/all-versions/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --mandir=/usr/man \
17 --with-plugins=/usr/lib/$name/plugins \
18 --disable-nls \
19 --enable-snmp \
20 --disable-gcry \
21 --without-krb5 \
22 --with-qt4=no \
23 --with-gtk3=yes
24
25 make
26 make DESTDIR=$PKG install
27
28 # install some icons
29 install -d $PKG/usr/share/$name/pixmaps
30 install -m 644 \
31 image/{hi,lo}{16,32,48}-app-$name.png \
32 $PKG/usr/share/$name/pixmaps
33
34 # Don't remove these files, they are read by wireshark's about box.
35 #rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
36 }
|