blob: e69b72dd3a0ef9232448e6c8b58002c23e9bfb8b (
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 libgcrypt
6
7 name=wireshark
8 version=2.6.6
9 release=1
10 source=(https://1.na.dl.wireshark.org/src/wireshark-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --with-plugins=/usr/lib/$name/plugins \
17 --without-krb5 \
18 --with-qt=no \
19 --with-gtk=yes
20
21 make
22 make DESTDIR=$PKG install
23
24 # Don't remove these files, they are read by wireshark's about box.
25 #rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
26 }
|