2020-11-07 22:10:13 -05:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
include /usr/share/dpkg/default.mk
|
|
|
|
|
|
|
|
BUILDDIR=_build
|
|
|
|
|
|
|
|
%:
|
2021-09-20 18:59:21 -04:00
|
|
|
dh $@ --builddirectory=$(BUILDDIR) --buildsystem=golang
|
2020-11-07 22:10:13 -05:00
|
|
|
|
|
|
|
execute_after_dh_auto_configure:
|
|
|
|
go mod vendor
|
|
|
|
cp -r vendor/* _build/src
|
|
|
|
|
|
|
|
override_dh_auto_build:
|
2022-01-02 10:16:23 -05:00
|
|
|
DH_GOPKG="github.com/v2fly/v2ray-core/v5/main" dh_auto_build -- -ldflags "-s -w"
|
2020-11-07 22:10:13 -05:00
|
|
|
cd $(BUILDDIR); mv bin/main bin/v2ray
|
2022-01-02 10:16:23 -05:00
|
|
|
DH_GOPKG="github.com/v2fly/v2ray-core/v5/infra/control/main" dh_auto_build -- -ldflags "-s -w" -tags confonly
|
2020-11-07 22:10:13 -05:00
|
|
|
cd $(BUILDDIR); mv bin/main bin/v2ctl
|
|
|
|
|
|
|
|
override_dh_auto_install:
|
|
|
|
dh_auto_install -- --no-source
|
|
|
|
|
|
|
|
override_dh_auto_test:
|