26 lines
468 B
Bash
Executable File
26 lines
468 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [[ "$1" == "" ]]
|
|
then
|
|
echo "Provide a version with arg1" >&2
|
|
exit 1
|
|
fi
|
|
[[ ! -d work ]] && 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
|
|
else
|
|
rm -rf compiling
|
|
echo "Failed to make!"
|
|
exit 2
|
|
fi
|
|
cd work
|
|
md5sum usr/bin/kshare > DEBIAN/md5sums
|
|
cd ..
|
|
dpkg-deb -b work/
|