opt/wireshark/Pkgfile

36 lines
941 B
Plaintext
Raw Normal View History

# Description: Network Sniffer with nice GTK+ UI
# URL: http://www.wireshark.org
2012-06-20 16:10:23 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Martin Opel, mo at obbl-net dot de
# Depends on: gtk libpcap libpcre
name=wireshark
2013-05-18 12:34:13 +02:00
version=1.8.7
2008-07-12 11:17:59 +02:00
release=1
2009-06-16 18:39:17 +02:00
source=(http://www.$name.org/download/src/all-versions/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
2007-07-06 12:55:45 +02:00
--mandir=/usr/man \
--with-plugins=/usr/lib/$name/plugins \
--disable-nls \
--enable-snmp \
--enable-gtk2 \
--disable-gcry \
--without-krb5
make
make DESTDIR=$PKG install
# install some icons
install -d $PKG/usr/share/$name/pixmaps
install -m 644 \
image/{hi,lo}{16,32,48}-app-$name.png \
$PKG/usr/share/$name/pixmaps
# Don't remove these files, they are read by wireshark's about box.
#rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
}