protonplus/main.sh

25 lines
508 B
Bash
Raw Normal View History

2024-11-02 14:32:03 +01:00
#! /bin/bash
set -e
. ./pika-build-config.sh
echo "$PIKA_BUILD_ARCH" > pika-build-arch
2024-11-02 14:45:07 +01:00
VERSION="0.4.20"
2024-11-02 14:32:03 +01:00
# Clone Upstream
2024-11-02 14:45:07 +01:00
git clone -b v"$VERSION" https://github.com/Vysp3r/ProtonPlus protonplus
cp -rvf ./debian ./protonplus/
cd ./protonplus
2024-11-02 14:32:03 +01:00
# Get build deps
2024-11-02 14:45:07 +01:00
LOGNAME=root dh_make --createorig -y -l -p protonplus_"$VERSION" || echo "dh-make: Ignoring Last Error"
2024-11-02 14:32:03 +01:00
apt-get build-dep ./ -y
# Build package
dpkg-buildpackage --no-sign
# Move the debs to output
cd ../
mkdir -p ./output
2024-11-02 14:45:07 +01:00
mv ./*.deb ./output/