pvc/build-deb.sh

8 lines
183 B
Bash
Raw Permalink Normal View History

2018-06-17 15:39:54 -04:00
#!/bin/sh
2020-02-15 23:24:22 -05:00
ver="$( head -1 debian/changelog | awk -F'[()-]' '{ print $2 }' )"
2018-06-17 15:39:54 -04:00
git pull
rm ../pvc_*
2018-06-17 15:42:22 -04:00
dh_make -p pvc_${ver} --createorig --single --yes
2018-06-17 15:39:54 -04:00
dpkg-buildpackage -us -uc
dh_clean