generated from general-packages/pika-pkg-template
b679e728fe
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 1m5s
27 lines
524 B
Bash
Executable File
27 lines
524 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
VERSION="1.1.3"
|
|
|
|
# Clone Upstream
|
|
git clone https://github.com/Open-Wine-Components/umu-launcher -b $VERSION
|
|
cd ./umu-launcher
|
|
cp -rvf ./packaging/deb/debian ./debian
|
|
|
|
# Get build deps
|
|
LOGNAME=root dh_make --createorig -y -l -p umu-launcher_"$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/
|