diff --git a/build.sh b/build.sh index 25b8a7e..0dbc7d8 100755 --- a/build.sh +++ b/build.sh @@ -11,9 +11,20 @@ create_deb() { dirname=kineintercommisc-$1 /usr/bin/mkdir -p bdist_deb/$dirname cd bdist_deb/$dirname + debvers=`/usr/bin/cat /etc/debian_version` + echo "$debvers" + IFS='.' + read -ra vers <<< "$debvers" + if [ "$vers" == "10" ]; then + # Write compat file to deb template for Debian 10.x + cat > $2/template/compat << EOF +11 +EOF + fi /usr/bin/dh_make -t $2/template -n -y -i -d /usr/bin/find $2/misc -type f -exec /usr/bin/cp -a {} . \; /usr/bin/dpkg-buildpackage -b -uc -us -rfakeroot + /usr/bin/rm -f $2/template/compat cd .. if [ $? == "0" ] && [ ! -d "$2/dist" ]; then /usr/bin/mkdir -p $2/dist