diff options
Diffstat (limited to 'social/babeld')
-rw-r--r-- | social/babeld/PKGBUILD | 32 | ||||
-rw-r--r-- | social/babeld/babeld.install | 18 |
2 files changed, 0 insertions, 50 deletions
diff --git a/social/babeld/PKGBUILD b/social/babeld/PKGBUILD deleted file mode 100644 index 485fecf05..000000000 --- a/social/babeld/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# Maintainer (AUR): Yann Lopez <arch at lonewulf dot net> -# Maintainer: fauno <fauno@parabola.nu> -pkgname=babeld -pkgver=1.3.4 -pkgrel=1 -pkgdesc="Loop-free distance-vector routing protocol" -arch=(i686 x86_64 mips64el) -url="http://www.pps.jussieu.fr/~jch/software/babel/" -license=('custom') -depends=(glibc) -source=(http://www.pps.jussieu.fr/~jch/software/files/$pkgname-$pkgver.tar.gz{,.asc}) -install=babeld.install -md5sums=('37be1cbcc23cd00ee47efc9157c58795' - 'e2dfae49b497ba70c0c1014feae80f3a') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - sed -e "s,/man/,/share&,g" -i Makefile - - make PREFIX=/usr CFLAGS="$CFLAGS" -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make PREFIX=/usr TARGET=$pkgdir install - - gzip -f $pkgdir/usr/share/man/man8/$pkgname.8 - - install -Dm 644 LICENCE $pkgdir/usr/share/licenses/$pkgname/LICENCE -} diff --git a/social/babeld/babeld.install b/social/babeld/babeld.install deleted file mode 100644 index 686153617..000000000 --- a/social/babeld/babeld.install +++ /dev/null @@ -1,18 +0,0 @@ -compatibility_warning() { - echo "PLEASE NOTE:" - echo " " - echo "-------------------------------------------------------------" - echo " This version uses the IANA-allocated UDP port and multicast" - echo " group and is therefore incompatible with older versions." - echo "-------------------------------------------------------------" -} - -post_upgrade() { - major=$(echo $2 | cut -d '.' -f1) - minor=$(echo $2 | cut -d '.' -f2) - if [ $major -lt 1 ]; then - compatibility_warning - elif [ $major -eq 1 -a $minor -lt 1 ]; then - compatibility_warning - fi -} |