77fbb40427
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Failing after 32s
19 lines
400 B
Makefile
19 lines
400 B
Makefile
#!/usr/bin/make -f
|
|
|
|
export DH_GOPKG := github.com/vanilla-os/apx
|
|
export GO111MODULE := on
|
|
export GOPROXY := https://proxy.golang.org,direct
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_install:
|
|
dh_install
|
|
ln -sf /usr/bin/apx debian/apx/usr/bin/apx2
|
|
make install-manpages DESTDIR=debian/apx/
|
|
|
|
override_dh_auto_build:
|
|
go mod download
|
|
find . -type f | cut -d'/' -f2- >> debian/source/include-binaries
|
|
dh_auto_build --
|