relational/do_debian
Salvo 'LtWorf' Tomaselli ada4f50843
do_debian script
To make a debian release
2017-08-19 09:10:46 +02:00

29 lines
376 B
Bash
Executable File

#!/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