mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
727 B
Bash
23 lines
727 B
Bash
# $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
|