On 16.01.20 12:52, info@hansroels.be wrote:
Next I ran the script of IOhannes line by line
export LANG=C MAINREPO=https://deb.debian.org/debian/pool/main/ PDVER=0.50.2-1 sudo apt-get install devscripts mkdir -p build cd build dget -u ${MAINREPO}/p/puredata/puredata_${PDVER}.dsc cd puredata-${PDVER%-*} echo 9 > debian/compat I changed the line "debhelper-compat (= 12)" in debian/control into "debhelper (>= 9)"
since you are using quite old debhelper-package, you might also need to install the "dh_autoreconf" package.
if that still doesn't work, you might also need to change the invocation of "dh" in debian/rules to the following (indentation is <TAB> rather than <SPACE>s):
<snip> %: dh $@ --with autoreconf </snip>
gmasdr IOhannes