# Maintainer: Brian Bidulock # Maintainer: Joost Molenaar pkgname=mrouted pkgver=4.2 pkgrel=1 pkgdesc="An implementation of the DVMRP multicast routing protocol. It turns a UNIX workstation into a DVMRP multicast router with tunnel support, in order to cross non-multicast-aware routers." arch=('i686' 'x86_64') url="https://github.com/troglobit/mrouted" license=('BSD') depends=('glibc') source=("https://github.com/troglobit/mrouted/releases/download/${pkgver}/mrouted-${pkgver}.tar.gz") md5sums=('b921f9e152e039efdac745438ef8362c') prepare() { cd $pkgname-$pkgver ./configure --prefix=/usr --sbindir=/usr/bin --with-systemd=/usr/lib/systemd/system } build() { cd $pkgname-$pkgver make } package() { cd $pkgname-$pkgver make DESTDIR=$pkgdir install # and this was supposed to be "easier"? mv "$pkgdir/usr/bin/mtrace" "$pkgdir/usr/bin/mrtrace" mv "$pkgdir/usr/share/man/man8/mtrace.8" "$pkgdir/usr/share/man/man8/mrtrace.8" install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim: se sw=2 et ts=2: