16 lines
312 B
Bash
16 lines
312 B
Bash
|
# Clone Upstream
|
||
|
mkdir -p ./pika-installer-gtk4
|
||
|
rsync -av --progress ./* ./pika-installer-gtk4 --exclude ./pika-installer-gtk4
|
||
|
cd ./pika-installer-gtk4
|
||
|
|
||
|
# Get build deps
|
||
|
apt-get build-dep ./ -y
|
||
|
|
||
|
# Build package
|
||
|
dpkg-buildpackage --no-sign
|
||
|
|
||
|
# Move the debs to output
|
||
|
cd ../
|
||
|
mkdir -p ./output
|
||
|
mv ./*.deb ./output/
|