1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-19 18:20:40 +03:00
SoftEtherVPN/debian/rules
Ilya Shipitsin 3f9f28f542 this resolves "nonexistent" path in debian packaging
found in issue 572

also, not needed debian/makefile.patch is removed
2018-07-26 00:10:09 +05:00

24 lines
559 B
Makefile
Executable File

#!/usr/bin/make -f
define generate_stub
echo '#!/bin/sh' > debian/usr/bin/$(1)
echo '/usr/libexec/softether/$(1)/$(1) "$@"' >> debian/usr/bin/$(1)
echo 'exit $?' >> debian/usr/bin/$(1)
chmod +x debian/usr/bin/$(1)
endef
export DH_VERBOSE=1
export export CMAKE_INSTALL_PREFIX=../debian/usr
%:
dh $@
override_dh_auto_make:
make -C tmp
override_dh_auto_install:
$(call generate_stub,vpnserver)
$(call generate_stub,vpnbridge)
$(call generate_stub,vpncmd)
$(call generate_stub,vpnclient)