river/main.sh

27 lines
504 B
Bash
Raw Permalink Normal View History

2024-12-10 13:53:14 +01:00
#! /bin/bash
set -e
. ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
2024-12-10 14:06:28 +01:00
VERSION="0.3.6"
2024-12-10 13:53:14 +01:00
# Clone Upstream
2024-12-10 14:06:28 +01:00
git clone --recurse-submodules https://github.com/riverwm/river.git -b v"$VERSION"
cp -rvf ./debian ./river/
cd ./river
2024-12-10 13:53:14 +01:00
# Get build deps
2024-12-10 14:06:28 +01:00
LOGNAME=root dh_make --createorig -y -l -p river_"$VERSION" || echo "dh-make: Ignoring Last Error"
2024-12-10 13:53:14 +01:00
apt-get build-dep ./ -y
# Build package
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
mv ./*.deb ./output/