afd70e5167
Some checks failed
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Failing after 43s
PikaOS Package Build Only (amd64-v3) / build (push) Failing after 1s
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Has been cancelled
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 0s
29 lines
720 B
Bash
Executable File
29 lines
720 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION=3.10.3
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
git clone https://github.com/an-anime-team/an-anime-game-launcher -b "$VERSION"
|
|
cp -rvf ./debian ./an-anime-game-launcher/
|
|
cp -rvf ./an-anime-game-launcher.desktop ./an-anime-game-launcher/
|
|
cd ./an-anime-game-launcher/
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | CARGO_HOME=/root/.cargo sh -s -- -y
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p an-anime-game-launcher_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|