mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
32 lines
963 B
Bash
32 lines
963 B
Bash
# $Id: PKGBUILD 26266 2009-02-04 18:42:21Z aaron $
|
|
# Maintainer: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=netselect
|
|
pkgver=0.3
|
|
pkgrel=2
|
|
pkgdesc="An ultrafast intelligent parallelizing binary-search implementation of ping"
|
|
arch=(i686 x86_64)
|
|
url="http://alumnit.ca/~apenwarr/netselect/index.html"
|
|
license=(custom)
|
|
depends=(glibc)
|
|
source=(http://alumnit.ca/~apenwarr/netselect/$pkgname-$pkgver.tar.gz
|
|
license.txt)
|
|
md5sums=('3a3714946db2458e5db3d55373057ef2'
|
|
'741ea171051c5cbac5ff18326c11d65e')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname
|
|
sed -i -e "s|sudo ||g" -e "s| #||g" Makefile
|
|
make CFLAGS="-I. $CFLAGS"|| return 1
|
|
|
|
mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man8
|
|
make BINDEST=$pkgdir/usr/bin \
|
|
MANDEST=$pkgdir/usr/share/man/man8 \
|
|
install
|
|
|
|
rm $pkgdir/usr/bin/netselect-apt #eww
|
|
|
|
install -D -m644 $srcdir/license.txt \
|
|
$pkgdir/usr/share/licenses/netselect/license.txt
|
|
}
|