2023-06-11 18:37:02 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
2024-07-26 18:26:39 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
VERSION="0.3.20"
|
|
|
|
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
2023-06-11 18:37:02 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-07-26 18:29:49 +02:00
|
|
|
git clone --recurse-submodules https://github.com/nwg-piotr/nwg-displays.git -b v"$VERSION"
|
2024-07-26 18:26:39 +02:00
|
|
|
cp -rvf ./debian ./nwg-displays/
|
|
|
|
cd ./nwg-displays
|
2023-06-11 18:37:02 +02:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-07-26 18:26:39 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p nwg-displays_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2023-06-11 18:37:02 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|