diff options
author | root <root@rshg054.dnsready.net> | 2011-10-13 23:14:39 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-13 23:14:39 +0000 |
commit | e426a2696568231fa5a863cb80f4db9088193732 (patch) | |
tree | c964dfb9fc97fe532c2decc05254875f32db580c /social | |
parent | b79408ae7429f4e5c99582cb55127b6e86b7fdac (diff) |
Thu Oct 13 23:14:38 UTC 2011
Diffstat (limited to 'social')
-rw-r--r-- | social/batctl/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/social/batctl/PKGBUILD b/social/batctl/PKGBUILD new file mode 100644 index 000000000..b37c0f666 --- /dev/null +++ b/social/batctl/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: Nathan Owe <ndowens.aur at gmail dot com> +# Maintainer: Thomas Weißschuh <thomas_weissschuh@lavabit.com> +pkgname=batctl +pkgver=2011.3.0 +pkgrel=1 +pkgdesc="B.A.T.M.A.N. advanced control and management tool" +arch=('i686' 'x86_64') +url="http://www.open-mesh.net/" +license=('GPL') +depends=('glibc') +source=("http://downloads.open-mesh.net/batman/releases/batman-adv-${pkgver}/${pkgname}-${pkgver}.tar.gz") +sha1sums=('a90abd309acda0199c0d7cb63e8a0d4408688a34') + +build(){ + cd ${srcdir}/${pkgname}-${pkgver} + make +} +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} PREFIX=/usr install + +} + +# vim:set ts=2 sw=2 et: |