mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-06 09:30:58 +01:00
14 lines
341 B
Text
14 lines
341 B
Text
![]() |
#!/usr/bin/make -f
|
||
|
export DH_VERBOSE = 1
|
||
|
export DESTDIR = "debian/opensnitch"
|
||
|
|
||
|
override_dh_dwz:
|
||
|
dwz -- $(DESTDIR)/usr/bin/daemon || true
|
||
|
mv $(DESTDIR)/usr/bin/daemon $(DESTDIR)/usr/bin/opensnitchd
|
||
|
|
||
|
override_dh_installsystemd:
|
||
|
dh_installsystemd --restart-after-upgrade
|
||
|
|
||
|
%:
|
||
|
dh $@ --builddirectory=_build --buildsystem=golang --with=golang
|