2024-11-12 17:23:58 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2024-11-12 17:26:44 +01:00
|
|
|
VERSION="0.8.9"
|
2024-11-12 17:23:58 +01:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-11-12 17:26:44 +01:00
|
|
|
git clone --recurse-submodules https://github.com/abenz1267/walker.git -b v"$VERSION"
|
2024-11-12 17:46:45 +01:00
|
|
|
if [[ "$PIKA_BUILD_ARCH" == "amd64-v3" ]]
|
|
|
|
then
|
|
|
|
cp -rvf ./Makefile-v3 ./walker/Makefile
|
|
|
|
fi
|
2024-11-12 17:26:44 +01:00
|
|
|
cp -rvf ./debian ./walker/
|
|
|
|
cd ./walker
|
|
|
|
|
2024-11-12 17:23:58 +01:00
|
|
|
|
|
|
|
# Get build deps
|
2024-11-12 17:26:44 +01:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p walker_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-11-12 17:23:58 +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/
|