diff options
Diffstat (limited to 'community/etherape/PKGBUILD')
-rw-r--r-- | community/etherape/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/etherape/PKGBUILD b/community/etherape/PKGBUILD new file mode 100644 index 000000000..a1d5cf3da --- /dev/null +++ b/community/etherape/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 40756 2011-02-26 14:25:14Z jlichtblau $ +# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de> +# Contributor: kevin <kevin@archlinux.org> +# Contributor: Damir Perisa <damir.perisa@bluewin.ch> + +pkgname=etherape +pkgver=0.9.10 +pkgrel=1 +pkgdesc="A graphical network monitor for various OSI layers and protocols" +arch=('i686' 'x86_64') +url="http://etherape.sourceforge.net/" +license=('GPL2') +depends=('libgnomeui' 'libpcap') +makedepends=('rarian' 'gnome-doc-utils') +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('e763b919b46f94f3cccc72f05d9075bb') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |