hyprutils/main.sh

27 lines
520 B
Bash
Raw Normal View History

2023-06-10 21:49:37 +02:00
#! /bin/bash
2024-07-01 21:15:02 +02:00
set -e
2024-08-24 22:45:13 +02:00
VERSION="0.2.1"
2024-07-27 15:53:51 +02:00
source ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
2023-07-26 17:33:42 +02:00
2023-06-10 21:49:37 +02:00
# Clone Upstream
2024-07-27 15:53:51 +02:00
git clone --recurse-submodules https://github.com/hyprwm/hyprutils -b v"$VERSION"
cp -rvf ./debian ./hyprutils/
cd ./hyprutils
2023-06-10 21:49:37 +02:00
# Get build deps
apt-get build-dep ./ -y
# Build package
2024-07-27 15:53:51 +02:00
LOGNAME=root dh_make --createorig -y -l -p hyprutils_"$VERSION" || echo "dh-make: Ignoring Last Error"
2023-06-10 21:49:37 +02:00
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/