mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
# $Id: PKGBUILD 53267 2009-09-27 15:08:39Z hugo $
|
|
# Maintainer: Hugo Doria <hugo@archlinux.org>
|
|
|
|
pkgname=wireshark
|
|
pkgver=1.2.2
|
|
pkgrel=1
|
|
pkgdesc="A free network protocol analyzer for Unix/Linux and Windows"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
depends=('gtk2>=2.14.5' 'heimdal>=1.2.1' 'libpcap>=1.0.0' 'bash' 'gnutls>=2.4.1' 'libcap>=2.16')
|
|
makedepends=('bison' 'flex')
|
|
url="http://www.wireshark.org/"
|
|
replaces=('ethereal')
|
|
options=(!libtool)
|
|
source=(http://www.wireshark.org/download/src/${pkgname}-${pkgver}.tar.gz wireshark.desktop wireshark.png)
|
|
md5sums=('3fa5f802313a4d8546bb2f50e769c369'
|
|
'504ede44c02b2a52f6cbd3bffdf93b8d'
|
|
'e771800a8c977fe223583a453bc27397')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
export CFLAGS="-fno-unit-at-a-time ${CFLAGS}"
|
|
./configure --prefix=/usr --with-ssl || return 1
|
|
make all || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
install -Dm644 ${srcdir}/wireshark.png ${pkgdir}/usr/share/icons/wireshark.png
|
|
install -Dm644 ${srcdir}/wireshark.desktop ${pkgdir}/usr/share/applications/wireshark.desktop
|
|
}
|