generated from wm-packages/ags
29 lines
531 B
Bash
Executable File
29 lines
531 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION="v1.8.2"
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
git clone --recurse-submodules https://github.com/Aylur/ags.git
|
|
cp -rvf ./debian ./ags/
|
|
cd ./ags
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
npm install
|
|
npm install -g typescript@latest
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p ags1_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|