2024-09-13 21:36:26 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2024-09-13 22:36:05 +02:00
|
|
|
VERSION="0.15.4"
|
2024-09-13 21:36:26 +02:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-09-13 22:36:05 +02:00
|
|
|
UPSTREAM_NAME="sbctl"
|
|
|
|
|
2024-09-14 00:02:41 +02:00
|
|
|
# Checkout and munch
|
2024-09-13 22:36:05 +02:00
|
|
|
git clone https://github.com/Foxboron/sbctl.git "${UPSTREAM_NAME}"
|
|
|
|
cp -rvf ./debian ./${UPSTREAM_NAME}/
|
|
|
|
|
2024-09-14 00:02:41 +02:00
|
|
|
# easier than figuring out the right way to override the prefix in the makefile
|
|
|
|
sed -i "s/usr\/local/usr/" "${UPSTREAM_NAME}/Makefile"
|
|
|
|
|
2024-09-13 22:36:05 +02:00
|
|
|
# Get in there.
|
|
|
|
pushd "./${UPSTREAM_NAME}/" || exit 1
|
2024-09-13 21:36:26 +02:00
|
|
|
|
|
|
|
# Get build deps
|
2024-09-13 22:36:05 +02:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p ${UPSTREAM_NAME}_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-09-13 21:36:26 +02:00
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
2024-09-13 22:36:05 +02:00
|
|
|
popd || exit 2
|
|
|
|
|
2024-09-13 21:36:26 +02:00
|
|
|
# Move the debs to output
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|