mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Zsolt Varadi <sysop_xxl@fibermail.hu>
|
||
|
|
||
|
pkgname=netbrake
|
||
|
pkgver=0.2
|
||
|
pkgrel=1
|
||
|
pkgdesc="Netbrake is an utility to limit the bandwidth used by a process"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.hping.org/netbrake/"
|
||
|
license=('GPL')
|
||
|
depends=()
|
||
|
makedepends=()
|
||
|
source=($url/$pkgname-$pkgver.tar.gz \
|
||
|
arch-x86_64.patch)
|
||
|
md5sums=('42f61481cdb910bddd1105d48367bdd2'
|
||
|
'fe9de3428ff2a2ec8766d1b2bf8acfb5')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname
|
||
|
|
||
|
[ $CARCH == "x86_64" ] && patch -Np1 <../arch-x86_64.patch
|
||
|
|
||
|
cp Makefile.in Makefile
|
||
|
sed -i -e 's|LIBPATH=@LIBPATH@|LIBPATH=/usr/lib|g' Makefile
|
||
|
sed -i -e 's|BINPATH=@BINPATH@|BINPATH=/usr/bin|g' Makefile
|
||
|
sed -i -e 's|COMPILE_TIME=@COMPILE_TIME@|COMPILE_TIME=-DNB_HTTPFS|g' Makefile
|
||
|
|
||
|
cp netbrake.h.in netbrake.h
|
||
|
sed -i -e 's|#define LIBPATH "@LIBPATH@"|#define LIBPATH "/usr/lib"|g' netbrake.h
|
||
|
|
||
|
make || return 1
|
||
|
|
||
|
mkdir -p $startdir/pkg/usr/bin
|
||
|
mkdir -p $startdir/pkg/usr/lib
|
||
|
|
||
|
install -m 755 netbrake $startdir/pkg/usr/bin
|
||
|
install -m 755 libnetbrake.so.0.1 $startdir/pkg/usr/lib
|
||
|
|
||
|
}
|