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
|
#!/usr/bin/make -f
export PYBUILD_NAME=topydo
export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/topydo\
--install-scripts=/usr/share/topydo
export PYBUILD_DISABLE_python2=1
manpages = $(shell (ls debian/*.md | sed 's/.md//'))
%:
dh $@ --with python3 --buildsystem=pybuild
execute_after_dh_auto_build:
for mn in ${manpages}; do \
pandoc $$mn.md -s -t man -o $$mn; \
sed -i 's/\\\[en\]/\\\-/' $$mn; \
done
execute_after_dh_auto_install:
mkdir -p debian/topydo/usr/bin/
mkdir -p debian/topydo/etc/
cp debian/topydo.conf debian/topydo/etc/
find debian/topydo -name \*.pyc -exec rm -f {} \;
find debian/topydo -name __pycache__ | xargs rm -rf
cp debian/topydo_wrapper.launch debian/topydo/usr/share/topydo/topydo_wrapper.cmd
|