blob: c553132faa3da0c723c99af86448dcf68fcf66df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/false
# Avoid using cabal, as it writes to $HOME
export CABAL=./Setup
%:
dh $@
override_dh_auto_build:
$(MAKE) build
override_dh_installdocs:
dh_installdocs doc/README.mdwn
override_dh_installman:
dh_installman propellor.1
# Not intended for use by anyone except the author.
announcedir:
@echo ${HOME}/src/propellor/doc/news
|