c7b91e4e50
Some checks failed
PikaOS Package Build & Release (Canary) (amd64-v3) / build (push) Has been cancelled
PikaOS Package Build Only (amd64-v3) / build (push) Has been cancelled
PikaOS Package Build Only (Canary) (amd64-v3) / build (push) Failing after 20s
PikaOS Package Build & Release (amd64-v3) / build (push) Failing after 15s
28 lines
620 B
Bash
Executable File
28 lines
620 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION=2.0.0.git
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
#git clone --depth=1 https://gitlab.com/Jhyub/supergfxctl-plasmoid -b v"$VERSION"
|
|
git clone --depth=1 https://gitlab.com/Jhyub/supergfxctl-plasmoid
|
|
cp -rvf ./debian ./supergfxctl-plasmoid
|
|
cd ./supergfxctl-plasmoid
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p supergfxctl-plasmoid_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|