2023-02-25 11:14:27 +01:00
|
|
|
# Clone Upstream
|
|
|
|
cd ./pika-sources
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-07-22 01:56:56 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p pika-sources_7.0 || echo "dh-make didn't go clean"
|
|
|
|
dpkg-buildpackage --no-sign
|
2023-02-25 11:14:27 +01:00
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|