1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_test:
@echo "skipping tests..."
override_dh_auto_clean:
rm -f *.db *.rpm *.deb *.dsc *.log *.fa *.xz *.gz *.test onedriver onedriver-headless unshare .auth_tokens.json filelist.txt
rm -rf util-linux-*/ onedriver-*/
override_dh_auto_build:
bash cgo-helper.sh
# GOCACHE will be for a nonexistent user in pbuilder otherwise
GOCACHE=/tmp/go-cache go build -v -mod=vendor \
-ldflags="-X github.com/jstaf/onedriver/cmd/common.commit=$(shell cat .commit)" \
./cmd/onedriver
GOCACHE=/tmp/go-cache go build -v -mod=vendor \
-ldflags="-X github.com/jstaf/onedriver/cmd/common.commit=$(shell cat .commit)" \
./cmd/onedriver-launcher
gzip pkg/resources/onedriver.1
override_dh_auto_install:
install -D -m 0755 onedriver $$(pwd)/debian/onedriver/usr/bin/onedriver
install -D -m 0755 onedriver-launcher $$(pwd)/debian/onedriver/usr/bin/onedriver-launcher
install -D -m 0644 pkg/resources/onedriver.png $$(pwd)/debian/onedriver/usr/share/icons/onedriver/onedriver.png
install -D -m 0644 pkg/resources/onedriver-128.png $$(pwd)/debian/onedriver/usr/share/icons/onedriver/onedriver-128.png
install -D -m 0644 pkg/resources/onedriver.svg $$(pwd)/debian/onedriver/usr/share/icons/onedriver/onedriver.svg
install -D -m 0644 pkg/resources/onedriver-launcher.desktop $$(pwd)/debian/onedriver/usr/share/applications/onedriver-launcher.desktop
install -D -m 0644 pkg/resources/onedriver@.service $$(pwd)/debian/onedriver/usr/lib/systemd/user/onedriver@.service
install -D -m 0644 pkg/resources/onedriver.1.gz $$(pwd)/debian/onedriver/usr/share/man/man1/onedriver.1.gz
|