do_debian script

To make a debian release
master
Salvo 'LtWorf' Tomaselli 2017-08-19 09:10:46 +07:00
parent b169a3ab35
commit ada4f50843
No known key found for this signature in database
GPG Key ID: B3A7CF0C801886CF
1 changed files with 28 additions and 0 deletions

@ -0,0 +1,28 @@
#!/bin/sh
# Create archive
make clean
make release
# Put archive in temp directory
T=$(mktemp -d)
mv *.orig.* $T
# Copy debian directory
git stash
git checkout debian
cp -r debian $T
git checkout -
git stash pop
# Uncompress archive
cd $T
tar -xvvf *.tar.gz
mv debian relational
# Build package
cd relational
dpkg-buildpackage
lintian -E --pedantic ../*.changes
echo $T