mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
17 lines
609 B
Bash
17 lines
609 B
Bash
# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
pkgname=driftnet
|
|
pkgver=0.1.6
|
|
pkgrel=3
|
|
pkgdesc="Listens to network traffic and picks out images from TCP streams it observes."
|
|
url=('http://www.ex-parrot.com/~chris/driftnet/')
|
|
license=('GPL')
|
|
arch=('i686' 'x86_64')
|
|
depends=('libjpeg' 'libpcap' 'libungif' 'gtk' 'giflib')
|
|
makedepends=('imake')
|
|
source=(http://www.ex-parrot.com/~chris/driftnet/$pkgname-$pkgver.tar.gz)
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR=$pkgdir || return 1
|
|
install -D -m755 $pkgname "$pkgdir/usr/bin/$pkgname"
|
|
}
|
|
md5sums=('8e11d77770452f97bb3c23f510489815')
|