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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/python/python.mk
SB=debian/spambayes
build: build-stamp
build-stamp:
dh_testdir
## Build for all python versions
python setup.py build
cp CHANGELOG.txt changelog
touch build-stamp
clean:
dh_testdir
rm -f build-stamp install-stamp
rm -rf build $(SB)
python setup.py clean
rm -f *.pyc */*.pyc */*/*.pyc
rm -f changelog
rm -rf spambayes.egg-info
dh_clean
install: install-stamp
install-stamp: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs -A
# Install Python modules
python setup.py -q install --root=$(SB) --no-compile ${py_setup_install_args}
rm $(SB)/usr/bin/sb_notesfilter.py
prename "s/.py//" $(SB)/usr/bin/*.py
rm -f $(SB)/usr/bin/sb_pop3dnd
dh_install -A
touch install-stamp
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installdocs -i
dh_installchangelogs -i
dh_python2 -i
dh_link -i
dh_strip -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
binary-arch:
binary: binary-indep
.PHONY: build clean binary-indep binary install binary-arch
|