generated from general-packages/pika-pkg-template
0691a652c9
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 43s
27 lines
512 B
Bash
Executable File
27 lines
512 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
VERSION="1.2.1"
|
|
|
|
# Clone Upstream
|
|
git clone --depth=1 https://gitlab.freedesktop.org/xdg/xdg-utils -b v"$VERSION"
|
|
cp -rvf ./debian ./xdg-utils
|
|
cd ./xdg-utils
|
|
|
|
# Get build deps
|
|
LOGNAME=root dh_make --createorig -y -l -p xdg-utils_"$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/
|