summaryrefslogtreecommitdiff
path: root/wireshark/Pkgfile
blob: ff89774511cb27af1bde09381b4331d6abd8246f (plain)
    1 # Description: Network Sniffer with nice GTK+ UI
    2 # URL: http://www.wireshark.org
    3 # Packager: Martin Opel, mo at obbl-net dot de
    4 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
    5 # Depends on: gtk libpcap
    6 # Nice to have: libpcre
    7 
    8 name=wireshark
    9 version=0.99.3a
   10 release=2
   11 source=(http://www.$name.org/download/src/$name-$version.tar.bz2)
   12 
   13 build() {
   14 	cd $name-$version
   15 
   16 	./configure --prefix=/usr \
   17 	            --disable-nls \
   18 	            --enable-snmp \
   19 	            --enable-gtk2 \
   20 	            --disable-gcry
   21 
   22 	make
   23 	make DESTDIR=$PKG install
   24 
   25 	# install some icons
   26 	install -d $PKG/usr/share/$name/pixmaps
   27 	install -m 644 \
   28 		image/{hi,lo}{16,32,48}-app-$name.png \
   29 		$PKG/usr/share/$name/pixmaps
   30 
   31 	# Don't remove AUTHORS-SHORT here, it's read by wireshark's
   32 	# about box.
   33 	#rm -f $PKG/usr/share/$name/AUTHORS-SHORT
   34 }

Generated by cgit