15f66ebc48
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 2m3s
29 lines
621 B
Bash
Executable File
29 lines
621 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION="2.0.0"
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
mkdir -p pika-installer-gtk4
|
|
cp -rvf ./* ./pika-installer-gtk4/ || true
|
|
cd ./pika-installer-gtk4/
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
apt-get install curl -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 pika-installer-gtk4_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|