2023-07-15 14:05:38 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
2024-07-28 11:46:18 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
VERSION="0.15.0.git"
|
|
|
|
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
2023-07-15 14:05:38 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-07-28 11:46:18 +02:00
|
|
|
#git clone --depth=1 -b v"$VERSION" https://github.com/FlyGoat/RyzenAdj ./ryzenadj
|
|
|
|
git clone --depth=1 https://github.com/FlyGoat/RyzenAdj ./ryzenadj
|
2023-07-15 14:15:01 +02:00
|
|
|
cp -rvf ./debian ./ryzenadj/
|
|
|
|
cd ./ryzenadj
|
2023-07-15 14:05:38 +02:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
2024-07-28 11:46:18 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p ryzenadj_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2023-07-15 14:05:38 +02:00
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|