blob: d3da8836604300896928e0651c168c9027b56da2 (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Maintainer: Vyacheslav Konovalov <vk@protonmail.com>
# Contributor: Echizen Ryoma <echizenryoma.zhang@gmail.com>
pkgname=opensnitch
pkgver=1.5.0
pkgrel=5
pkgdesc='GNU/Linux port of the Little Snitch application firewall'
arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64')
url='https://github.com/evilsocket/opensnitch'
license=('GPL3')
depends=(
'libnetfilter_queue'
'libpcap'
'python-grpcio'
'python-protobuf'
'python-slugify'
'python-pyqt5'
'abseil-cpp'
'qt5-tools'
)
makedepends=(
'go'
'python-grpcio-tools'
'python-setuptools'
)
optdepends=(
'logrotate: for logfile rotation support'
'hicolor-icon-theme: for gui'
'python-pyinotify: for system notifications'
)
backup=(
'etc/opensnitchd/default-config.json'
'etc/opensnitchd/system-fw.json'
)
source=(
"$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
)
sha512sums=(
'1f6bed64493dbf39ea0114adf302a5aaddecb2c36a67ce571be989779bb8c41939886d69c673d7a2afc7e51575233dca27b1544ab56564cafd01271d4b4d6810'
)
prepare() {
cd "$srcdir/opensnitch-$pkgver"
sed -i 's|local/bin|bin|g' daemon/opensnitchd.service
}
build() {
cd "$srcdir/opensnitch-$pkgver"
export GOPATH="$srcdir/gopath"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=mod"
export PATH="${GOPATH}/bin:${PATH}"
go install github.com/golang/protobuf/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
echo "$(whereis protoc-gen-go)"
echo "$(whereis protoc-gen-go-grpc)"
pushd proto
make
popd
pushd daemon
make
popd
pushd ui
make translations
pyrcc5 -o opensnitch/resources_rc.py opensnitch/res/resources.qrc
sed -i 's/^import ui_pb2/from . import ui_pb2/' opensnitch/ui_pb2*
python setup.py build
rm -rf tests
popd
go clean -modcache
}
package() {
cd "$srcdir/opensnitch-$pkgver"
install -Dm755 daemon/opensnitchd -t "$pkgdir/usr/bin"
install -Dm644 daemon/opensnitchd.service -t "$pkgdir/usr/lib/systemd/system"
install -dm755 "$pkgdir/etc/opensnitchd/rules"
install -Dm644 daemon/default-config.json -t "$pkgdir/etc/opensnitchd"
install -Dm644 daemon/system-fw.json -t "$pkgdir/etc/opensnitchd"
install -Dm644 debian/opensnitch.logrotate "$pkgdir/etc/logrotate.d/opensnitch"
pushd ui
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
popd
}
|