2023-03-08 17:53:07 +01:00
|
|
|
# Clone Upstream
|
2023-08-06 20:23:17 +02:00
|
|
|
git clone https://github.com/trbs/pid -b 3.0.4
|
|
|
|
cp -rvf ./debian ./pid/
|
|
|
|
cd ./pid
|
2023-03-08 17:53:07 +01:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2023-05-24 17:11:09 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-08 17:53:07 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|