2023-06-14 19:51:47 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2023-06-15 13:22:09 +00:00
|
|
|
GO_LDFLAGS += -X 'main.configPath=/etc/tlstunnel'
|
|
|
|
GO_LDFLAGS += -X 'main.certDataPath=/var/lib/tlstunnel'
|
|
|
|
|
2023-06-14 19:51:47 +00:00
|
|
|
%:
|
|
|
|
dh $@ --builddirectory=_build --buildsystem=golang --with=golang
|
|
|
|
|
|
|
|
execute_before_dh_auto_build:
|
|
|
|
make tlstunnel.1
|
2023-06-15 13:22:09 +00:00
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
dh_auto_build -- -ldflags "$(GO_LDFLAGS)"
|