2023-06-30 11:57:38 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
# Clone Upstream
|
2023-06-30 14:57:38 +02:00
|
|
|
git clone --recursive https://github.com/Audio4Linux/JDSP4Linux
|
|
|
|
cd JDSP4Linux
|
|
|
|
cp -rvf ../debian ./
|
2023-06-30 15:26:15 +02:00
|
|
|
cp -rvf ../jamesdsp.desktop ./
|
|
|
|
cp -rvf ../jamesdsp.png ./
|
2023-06-30 11:57:38 +02:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
2023-06-30 14:57:38 +02:00
|
|
|
qmake ../JDSP4Linux.pro
|
2023-06-30 11:57:38 +02:00
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|