blob: 990bd7b84bf9f01c944375c5d86fdbddb453c706 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Maintainer: Gordian Edenhofer <gordian.edenhofer@gmail.com>
# Submitter: Troy Engel <troyengel+arch@gmail.com>
pkgbase=bcc
pkgname=('bcc' 'bcc-tools' 'python-bcc')
pkgver=0.16.0
pkgrel=1
pkgdesc='BPF Compiler Collection'
arch=('x86_64')
url='https://github.com/iovisor/bcc'
license=('Apache')
makedepends=('cmake' 'clang>=3.7.0' 'llvm>=3.7.0' 'flex' 'bison' 'python')
checkdepends=('netperf' 'iperf')
source=("${pkgbase}-${pkgver}.tar.gz"::"https://github.com/iovisor/${pkgbase}/releases/download/v${pkgver}/${pkgbase}-src-with-submodule.tar.gz")
sha512sums=('ec2eec46ef45e96a269fe252de85734e12182bac839c7ee958852c6e7f4935b86f83536d6fd127933549f521d9b7af440544207818d5bd72a94567d41c6f3b75')
build() {
cd "${srcdir}/${pkgbase}"
rm -rf build
mkdir build
cd build
# The python version is irrelevant at this stage
cmake -DREVISION="${pkgver}" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib ..
make
}
package_bcc() {
pkgdesc='BPF Compiler Collection - C library and examples'
depends=('clang>=3.7.0' 'libelf')
optdepends=('linux-headers: build modules against the Arch kernel'
'linux-lts-headers: build modules against the LTS kernel'
'linux-zen-headers: build modules against the ZEN kernel'
'linux-hardened-headers: build modules against the HARDENED kernel'
'bcc-tools: Python utilites using the BCC library'
'python-bcc: Python 3 bindings for BCC')
provides=('bcc' 'libbcc')
cd "${srcdir}/${pkgbase}/build"
# Install the kitchen sink
make DESTDIR="${pkgdir}" install
# These go in a split package python*-bcc
rm -rf "${pkgdir}"/usr/lib/python*
# These go in a split package bcc-tools
rm -rf "${pkgdir}"/usr/share/bcc/{tools,man}
}
package_bcc-tools() {
pkgdesc='BPF Compiler Collection - Tools'
arch=('any')
depends=('bcc' 'libedit' 'ethtool')
optdepends=('python-bcc: Python 3 bindings for BCC'
'luajit: Lua bindings for BCC')
make -C "${srcdir}/${pkgbase}/build/tools" DESTDIR="${pkgdir}" install
make -C "${srcdir}/${pkgbase}/build/man" DESTDIR="${pkgdir}" install
}
package_python-bcc() {
pkgdesc='BPF Compiler Collection - Python 3 bindings'
arch=('any')
depends=('bcc' 'python')
optdepends=('python-netaddr: Network address representation and manipulation'
'python-pyroute2: Netlink and Linux network configuration')
cd "${srcdir}/${pkgbase}/build"
# Force a quick python3 binding build (C library is already built)
cmake -DREVISION="${pkgver}" \
-DPYTHON_CMD="python" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib ..
make -C "${srcdir}/${pkgbase}/build/src/python"
# Install just those bindings
make -C "${srcdir}/${pkgbase}/build/src/python" DESTDIR="${pkgdir}" install
}
|