diff options
Diffstat (limited to 'community/wireshark/PKGBUILD')
-rw-r--r-- | community/wireshark/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/community/wireshark/PKGBUILD b/community/wireshark/PKGBUILD index 35a985d8b..81c48e4f8 100644 --- a/community/wireshark/PKGBUILD +++ b/community/wireshark/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 100436 2013-11-04 11:50:09Z tredaelli $ +# $Id: PKGBUILD 102796 2013-12-20 11:11:34Z tredaelli $ # Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com> # Contributor: Guillaume ALAUX <guillaume@archlinux.org> # Contributor: Florian Pritz <bluewind at jabber dot ccc dot de> pkgname=('wireshark-cli' 'wireshark-gtk') pkgbase=wireshark -pkgver=1.10.3 +pkgver=1.10.5 pkgrel=1 arch=('i686' 'x86_64') license=('GPL2') -makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' +makedepends=('gtk3' 'krb5' 'libpcap' 'bash' 'gnutls' 'portaudio' 'lua' 'python' 'desktop-file-utils' 'hicolor-icon-theme') url='http://www.wireshark.org/' source=(http://www.wireshark.org/download/src/${pkgbase}-${pkgver}.tar.bz2 wireshark-1.10.3-gtk3.10-compile.patch) -sha256sums=('c1641b36aeb0ca2c1a95fb01d2c647888b65e00a215c9a6464b5fc61e0fd498c' +sha256sums=('a02190da9573dd381e7598277a31d0c63b05b2af9fe05ab6b7fc058bbea141f5' '45274cca58f0abdd3a560beb79a6f0bc8f35736426a1855ed048c9ad8e94f3c0') prepare() { @@ -27,16 +27,19 @@ build() { ./autogen.sh ./configure \ --prefix=/usr \ - --with-ssl \ - --with-zlib=yes \ + --with-gtk3=yes \ + --with-pcap \ + --with-zlib \ --with-lua \ - --with-gtk3=yes + --with-portaudio \ + --with-ssl \ + --with-krb5 make all } package_wireshark-cli() { pkgdesc='a free network protocol analyzer for Unix/Linux and Windows - CLI version' - depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua') + depends=('krb5' 'libpcap' 'bash' 'gnutls' 'glib2' 'lua' 'portaudio') install=wireshark.install conflicts=(wireshark) |