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
export PYBUILD_NAME=eyed3
py3_dstdir := $(CURDIR)/debian/python3-eyed3
eyed3_dstdir := $(CURDIR)/debian/eyed3
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_python3:
dh_python3 --suggests-section=art-plugin
override_dh_installchangelogs:
dh_installchangelogs -p eyed3 HISTORY.rst
dh_installchangelogs -p python3-eyed3 -X history.rst -X HISTORY.rst
override_dh_auto_test:
override_dh_auto_install:
dh_auto_install
mkdir -p ${eyed3_dstdir}/usr/bin/
mv ${py3_dstdir}/usr/bin/eyeD3 ${eyed3_dstdir}/usr/bin/eyeD3
|