2010-10-16 20:41:24 +00:00
|
|
|
#!/usr/bin/make -f
|
2012-09-28 19:57:55 +00:00
|
|
|
|
2015-06-14 18:43:55 +00:00
|
|
|
# Avoid using cabal, as it writes to $HOME
|
|
|
|
export CABAL=./Setup
|
2013-03-29 15:37:25 +00:00
|
|
|
|
2015-05-11 08:45:33 +00:00
|
|
|
STANDALONE_BUILD=$(shell grep -qe '^Package: git-annex-standalone' debian/control \
|
|
|
|
&& echo 1 || echo 0)
|
|
|
|
|
2013-04-10 20:53:04 +00:00
|
|
|
# Do use the changelog's version number, rather than making one up.
|
2013-05-10 22:52:35 +00:00
|
|
|
export RELEASE_BUILD=1
|
2013-04-10 20:53:04 +00:00
|
|
|
|
2010-10-16 20:41:24 +00:00
|
|
|
%:
|
|
|
|
dh $@
|
2015-04-20 15:29:32 +00:00
|
|
|
|
2015-05-11 08:45:33 +00:00
|
|
|
|
|
|
|
# Standalone build logic/helpers
|
|
|
|
ifeq ($(STANDALONE_BUILD),1)
|
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
make linuxstandalone
|
|
|
|
|
|
|
|
override_dh_auto_install:
|
|
|
|
: # nothing to do, we just need to copy the beast, as instructed in debian/install
|
|
|
|
|
|
|
|
override_dh_fixperms:
|
|
|
|
dh_fixperms -Xld-linux
|
|
|
|
|
|
|
|
endif
|