blob: 03dce211a3d1ed07d123057acd57ff4c4c302cb1 (
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 hicolor-icon-theme
6
7 name=wireshark
8 version=2.0.3
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 --with-plugins=/usr/lib/$name/plugins \
17 --without-krb5 \
18 --with-gtk3=yes \
19 --with-qt=no
20
21 make
22 make DESTDIR=$PKG install
23
24 # install some icons
25 install -d $PKG/usr/share/$name/pixmaps
26 install -m 644 \
27 image/{hi,lo}{16,32,48}-app-$name.png \
28 $PKG/usr/share/$name/pixmaps
29
30 # Don't remove these files, they are read by wireshark's about box.
31 #rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
32 }
|