blob: 3f3e8e3288a2e0679bc1f60c842e00f91d3c7632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Florian Sorko <florian.begusch@gmail.com>
# Contributor: Jonathon Fernyhough <jonathon+m2x+dev>
# Contributor: Jaroslav Lichtblau <svetlemodry@archlinux.org>
# Contributor: Romain Bouchaud-Leduc <r0m1.bl@camaris.org>
pkgname=trickle
pkgver=1.07
pkgrel=13
pkgdesc="Lightweight userspace bandwidth shaper"
arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
url="https://github.com/mariusae/trickle"
license=('BSD')
depends=('libevent' 'libtirpc')
_commit=a2aeb9f30aa3c651580b9be9ba3c9c13bf51a416 # "import of trickle 1.07"
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/mariusae/trickle/archive/${_commit}.tar.gz"
"fix-crasher.patch"
"$url/commit/20f221f166fc03323ed28dc3cad0b0da2c879513.patch"
"trickle-gcc14.patch")
sha256sums=('b07ffdff831d11972dc802a4fc2d4000af844933b39ad7f88de20a2866a55f37'
'495aeb95039dcdeb3bfde46c40b3391fe2416ec51678a1ded9bbeced6f6d1349'
'432194c2a25e934a865a06de9fa876545431a1729028ca1a60943554865fb40c'
'07614e2a07ab61e95572da44b22b7a05b14d958ec62f4c400f7527104ff3492f')
prepare() {
cd $pkgname-$_commit
# FS#27549
sed -i 's|^_select(int|select(int|' trickle-overload.c
# FS#35872
patch -Np1 -i ../fix-crasher.patch
# Fix build with -Werror=format-security, https://github.com/mariusae/trickle/commit/20f221f166fc03323ed28dc3cad0b0da2c879513
patch -Np1 -i ../20f221f166fc03323ed28dc3cad0b0da2c879513.patch
patch -Np1 -i ../trickle-gcc14.patch
autoconf
}
build() {
cd $pkgname-$_commit
CPPFLAGS+=" -I/usr/include/tirpc/"
LDFLAGS+=" -ltirpc"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--build=$(gcc -dumpmachine)
sed -i "s|.*in_addr_t.*||g" config.h
make -j1
}
package(){
cd $pkgname-$_commit
make DESTDIR="${pkgdir}" install
install -Dm644 -t "${pkgdir}"/usr/share/licenses/${pkgname}/ LICENSE
}
|