170215aa39
Some checks failed
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 36s
24 lines
413 B
Bash
Executable File
24 lines
413 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
git clone --recurse-submodules --depth=1 https://github.com/linuxmint/webapp-manager
|
|
cp -rvf ./debian ./webapp-manager/
|
|
cd ./webapp-manager
|
|
|
|
# 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/
|