blob: bc12c3e094dc35a5b3c526fbd59f5c40c056791d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# disable Berkley Packet Filtering
sed -i 's@--enable-bpf-compiler@--disable-bpf-compiler@g' PKGBUILD
# disable nftable support, draws in more libraries, we need the xtables
# depevelopment mainly now for iproute2
sed -i "/depends=/s/libnftnl//" PKGBUILD
sed -i 's@./configure@./configure --disable-nftables@' PKGBUILD
# disable libpcap (tcpdump, draws in too many dependencies)
sed -i "/depends=/s/libpcap//" PKGBUILD
# disable connection tracking
sed -i 's@./configure@./configure --disable-connlabel@' PKGBUILD
|