mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
28 lines
657 B
Makefile
Executable File
28 lines
657 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
include /usr/share/dpkg/default.mk
|
|
|
|
BUILDDIR=_build
|
|
|
|
%:
|
|
dh $@ --builddirectory=$(BUILDDIR) --buildsystem=golang --with=golang
|
|
|
|
execute_after_dh_auto_configure:
|
|
go mod vendor
|
|
cp -r vendor/* _build/src
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|
|
rm -rf vendor
|
|
|
|
override_dh_auto_build:
|
|
DH_GOPKG="github.com/v2fly/v2ray-core/v4/main" dh_auto_build -- -ldflags "-s -w"
|
|
cd $(BUILDDIR); mv bin/main bin/v2ray
|
|
DH_GOPKG="github.com/v2fly/v2ray-core/v4/infra/control/main" dh_auto_build -- -ldflags "-s -w" -tags confonly
|
|
cd $(BUILDDIR); mv bin/main bin/v2ctl
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- --no-source
|
|
|
|
override_dh_auto_test:
|