KShare/packages/makedeb.sh

26 lines
448 B
Bash
Executable File

#!/usr/bin/env bash
if [[ "$1" == "" ]]
then
echo "Provide a version with arg1" >&2
exit 1
fi
cp ubuntu17.04 work -r
sed "s/%ver/$1/g" ubuntu17.04/DEBIAN/control > work/DEBIAN/control
mkdir -p work/usr/bin
mkdir compiling
cd compiling
qmake ../../KShare.pro
if make
then
cd ..
cp compiling/KShare work/usr/bin/kshare
rm -rf compiling
else
rm -rf compiling
echo "Failed to make!"
exit 2
fi
cd work
md5sum usr/bin/kshare > DEBIAN/md5sums
cd ..