f1268da97c
Some checks failed
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Failing after 27s
PikaOS Package Build Only (amd64-v3) / build (push) Failing after 1s
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Failing after 29s
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 1s
27 lines
512 B
Bash
Executable File
27 lines
512 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION="0.0.git"
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
git clone --recurse-submodules https://github.com/ErikReider/SwayOSD ./swayosd
|
|
cp -rvf ./debian ./swayosd
|
|
cd ./swayosd
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p swayosd_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|