5791ba79bc
debian patch also fixes the problem. And they needed a 1MB patch for that!
22 lines
509 B
Plaintext
22 lines
509 B
Plaintext
# Description: lightweight userspace bandwidth shaper
|
|
# URL: http://monkey.org/~marius/trickle/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: libevent
|
|
|
|
name=trickle
|
|
version=1.07
|
|
release=1
|
|
source="http://monkey.org/~marius/trickle/$name-$version.tar.gz"
|
|
|
|
build()
|
|
{
|
|
cd $name-$version
|
|
sed -i '/#include <netinet\/in.h>/d' *.c
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
make
|
|
make install DESTDIR=$PKG
|
|
}
|