blob: d1393d571d34ce29d3b7e6c2ed0a24bfe80dfd10 (
plain)
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
|
#!/usr/bin/make -f
# Avoid using cabal, as it writes to $HOME
export CABAL=./Setup
STANDALONE_BUILD=$(shell grep -qe '^Package: git-annex-standalone' debian/control \
&& echo 1 || echo 0)
# Do use the changelog's version number, rather than making one up.
export RELEASE_BUILD=1
%:
dh $@
# 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
|