2023-03-02 22:16:54 +01:00
|
|
|
# Clone Upstream
|
|
|
|
cd ./basefiles
|
|
|
|
|
|
|
|
# Get build deps
|
2023-09-11 21:24:38 +02:00
|
|
|
apt-get build-dep ./ -y
|
2023-03-02 22:16:54 +01:00
|
|
|
|
|
|
|
# Build package
|
2023-09-11 21:24:38 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
2023-03-02 22:16:54 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|