15 lines
216 B
Bash
Executable File
15 lines
216 B
Bash
Executable File
# Clone Upstream
|
|
cd ./pika-hyprland-settings
|
|
|
|
# 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/
|