PKGBUILDs/extra/etherape/PKGBUILD

24 lines
727 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 20312 2008-12-02 12:46:09Z tom $
# Maintainer: kevin <kevin@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=etherape
pkgver=0.9.7
pkgrel=4
pkgdesc="A graphical network monitor for various OSI layers and protocols"
arch=(i686 x86_64)
url="http://etherape.sourceforge.net/"
license=('GPL2')
makedepends=('rarian')
depends=('libgnomeui' 'libpcap>=1.0.0')
source=(http://dl.sourceforge.net/sourceforge/etherape/$pkgname-$pkgver.tar.gz)
md5sums=('7b5783090d92abe79634da4b582c6b48')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc/etherape
/usr/bin/make || return 1
/usr/bin/make DESTDIR=$startdir/pkg install
}
# vim: ts=2 sw=2 et ft=sh