2024-08-15 21:01:35 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2024-09-16 14:05:04 +02:00
|
|
|
VERSION="1.0.4"
|
2024-08-15 21:01:35 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-08-22 14:07:34 +02:00
|
|
|
git clone https://github.com/sched-ext/scx.git -b v"$VERSION"
|
2024-08-15 21:07:56 +02:00
|
|
|
cp -rvf ./debian ./scx/
|
|
|
|
cd ./scx/
|
2024-08-15 21:01:35 +02:00
|
|
|
|
|
|
|
# Get build deps
|
2024-08-15 21:07:56 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p scx_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-08-15 21:01:35 +02:00
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|