2024-11-11 21:08:07 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2024-11-11 21:08:54 +01:00
|
|
|
VERSION="v1.8.2"
|
2024-11-11 21:08:07 +01:00
|
|
|
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
|
|
|
# Clone Upstream
|
2024-11-11 21:14:23 +01:00
|
|
|
git clone --recurse-submodules https://github.com/ferrreo/ags.git
|
2024-11-11 21:08:07 +01:00
|
|
|
cp -rvf ./debian ./ags/
|
|
|
|
cd ./ags
|
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
npm install
|
|
|
|
npm install -g typescript@latest
|
|
|
|
|
|
|
|
# Build package
|
2024-11-11 21:08:54 +01:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p ags1_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-11-11 21:08:07 +01:00
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|