2024-07-29 15:21:58 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2023-04-29 17:27:11 +02:00
|
|
|
# Clone Upstream
|
2024-11-27 19:05:18 +01:00
|
|
|
git clone --recurse-submodules --depth=1 https://github.com/linuxmint/webapp-manager
|
|
|
|
cd ./webapp-manager
|
2023-04-29 17:27:11 +02:00
|
|
|
|
|
|
|
# Get build deps
|
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|