22 lines
385 B
Bash
Executable File
22 lines
385 B
Bash
Executable File
#! /bin/bash
|
|
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Clone Upstream
|
|
git clone --recurse-submodules https://github.com/mortie/swaylock-effects
|
|
cd swaylock-effects
|
|
git checkout v1.6-4
|
|
sed -i -e '1299d' ./main.c
|
|
cp -rvf ../debian ./
|
|
|
|
# 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/
|