15 lines
206 B
Bash
15 lines
206 B
Bash
|
# Clone Upstream
|
||
|
cd ./pika-desktop
|
||
|
|
||
|
# Get build deps
|
||
|
apt-get build-dep ./ -y
|
||
|
|
||
|
# Build package
|
||
|
dh_make --createorig
|
||
|
dpkg-buildpackage
|
||
|
|
||
|
# Move the debs to output
|
||
|
cd ../
|
||
|
mkdir -p ./output
|
||
|
mv ./*.deb ./output/
|