2023-06-11 15:28:46 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
2024-07-27 00:21:40 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
VERSION="1.6.4.git"
|
|
|
|
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
2023-06-11 15:28:46 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2023-06-11 15:30:06 +02:00
|
|
|
git clone --recurse-submodules https://github.com/mortie/swaylock-effects
|
2024-07-27 00:21:40 +02:00
|
|
|
cp -rvf ./debian ./swaylock-effects
|
|
|
|
cd ./swaylock-effects
|
2023-06-11 15:55:08 +02:00
|
|
|
sed -i -e '1299d' ./main.c
|
2023-06-11 15:30:06 +02:00
|
|
|
|
2023-06-11 15:28:46 +02:00
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-07-27 00:21:40 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p swaylock-effects_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2023-06-11 15:28:46 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|