generated from general-packages/pika-pkg-template
c061a2c973
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 41s
25 lines
469 B
Bash
Executable File
25 lines
469 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
VERSION="46.0"
|
|
|
|
# Clone Upstream
|
|
cd ./gnome-shell-extension-custom-accent-colors/
|
|
|
|
# Get build deps
|
|
LOGNAME=root dh_make --createorig -y -l -p gnome-shell-extension-custom-accent-colors_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|