2019-05-26 18:57:43 +02:00
|
|
|
#!/bin/bash
|
2019-05-28 01:55:32 +02:00
|
|
|
red="\e[91m"
|
|
|
|
default="\e[39m"
|
2019-05-28 01:56:06 +02:00
|
|
|
echo Today \(2019-05-27\) it is maybe best to build the .deb it on Ubuntu 16.04
|
2019-05-28 01:50:56 +02:00
|
|
|
echo Since there are no versions specified of the libraries it will takte current
|
|
|
|
echo so it would also run on Ubuntu 17,18,19 or Debian 9/10
|
2019-05-28 01:55:32 +02:00
|
|
|
echo -e ${red}press a [KEY] to continue or [CTRL]-C to abort${default}
|
2019-05-28 01:51:58 +02:00
|
|
|
read -n 1
|
2019-05-28 01:50:56 +02:00
|
|
|
|
2019-05-26 18:57:43 +02:00
|
|
|
sudo apt-get install devscripts build-essential lintian dh-make
|
2019-05-27 18:58:23 +02:00
|
|
|
sudo apt-get install qtdeclarative5-dev qt5-default libjack-jackd2-dev
|
2019-05-26 18:57:43 +02:00
|
|
|
|
|
|
|
mv debian ..
|
|
|
|
cd ..
|
|
|
|
debuild -us -uc
|
|
|
|
mv debian distributions
|