blob: c8bea8d509f09f5255e5bbd6e6f93c0affa25af8 (
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
29
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# NOTE: Unsetting $TERM is necessary since the
# PPA build servers have a broken curses setup.
# They have $TERM set but do not include the corresponding
# terminal definitions.
# This lets SciTECO choose a reasonable default
# and we've also added some terminal definitions to the
# build dependencies.
export TERM=
%:
dh $@
build:
dh_testdir
dh_auto_configure -- \
--enable-bootstrap \
--with-interface=ncurses
dh_auto_build
touch $@
clean:
dh_testdir
dh_auto_clean
dh_clean
|