mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 08:34:40 +01:00
13 lines
341 B
Makefile
Executable file
13 lines
341 B
Makefile
Executable file
#!/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
|