1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/make -f
DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
%:
dh $@
override_dh_auto_build:
dh_auto_build -- INSTDIR=$(CURDIR)/debian/$(DEBPKGNAME)/usr/bin
override_dh_auto_install:
dh_auto_install -- INSTDIR=$(CURDIR)/debian/$(DEBPKGNAME)/usr/bin
override_dh_auto_test:
echo "=============================================================================="
echo "Test needs online connection to google and thus can not be done in chroot"
echo "=============================================================================="
|