mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
Merge pull request #247 from ag4ve/master
new package and babel editorials
This commit is contained in:
commit
6ae10cf1e2
2 changed files with 30 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
||||||
# Maintainer: Okhin <okhin@okhin.fr>
|
# Maintainer: Shawn Wilson <ag4ve.us@gmail.com>
|
||||||
pkgname=babeld
|
pkgname=babeld
|
||||||
pkgver=1.3.4
|
pkgver=1.3.4
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="a loop-free distance-vector routing protocol, frequency aware"
|
pkgdesc="a loop-avoiding distance-vector routing protocol"
|
||||||
arch=(arm)
|
arch=(arm)
|
||||||
url="http://article.gmane.org/gmane.network.routing.babel.user/610"
|
url="http://www.pps.univ-paris-diderot.fr/~jch/software/babel/"
|
||||||
license=('custom')
|
license=('custom')
|
||||||
depends=(glibc)
|
depends=(glibc)
|
||||||
source=(http://www.pps.jussieu.fr/~jch/software/files/$pkgname-$pkgver.tar.gz)
|
source=(http://www.pps.jussieu.fr/~jch/software/files/$pkgname-$pkgver.tar.gz)
|
||||||
|
|
27
alarm/batctl/PKGBUILD
Normal file
27
alarm/batctl/PKGBUILD
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# Maintainer: Shawn Wilson <ag4ve.us@gmail.com>
|
||||||
|
pkgname=batctl
|
||||||
|
pkgrel=1
|
||||||
|
pkgver=2012.3.0
|
||||||
|
pkgdesc="management and control tool for batman-adv"
|
||||||
|
arch=(arm)
|
||||||
|
url="http://www.open-mesh.org/projects/batman-adv"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('glibc')
|
||||||
|
source=(http://downloads.open-mesh.org/batman/stable/sources/batctl/$pkgname-$pkgver.tar.gz)
|
||||||
|
md5sums=('fe9e6a3994539037b48afc5e3d31628c')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$srcdir/$pkgname-$pkgver"
|
||||||
|
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$srcdir/$pkgname-$pkgver"
|
||||||
|
|
||||||
|
install -d $pkgdir/usr/local/share/man/man8/
|
||||||
|
install -d $pkgdir/usr/local/sbin/
|
||||||
|
install -m 0755 batctl $pkgdir/usr/local/sbin/
|
||||||
|
install -m 0644 man/batctl.8 $pkgdir/usr/local/share/man/man8/
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue