2024-11-02 19:23:35 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
|
2024-11-02 19:28:32 +01:00
|
|
|
VERSION="1.1.3"
|
2024-11-02 19:23:35 +01:00
|
|
|
|
|
|
|
# Clone Upstream
|
2024-11-02 19:28:32 +01:00
|
|
|
git clone https://github.com/Open-Wine-Components/umu-launcher -b $VERSION
|
|
|
|
cd ./umu-launcher
|
|
|
|
cp -rvf ./packaging/deb/debian ./debian
|
2024-11-02 19:23:35 +01:00
|
|
|
|
|
|
|
# Get build deps
|
2024-11-02 19:28:32 +01:00
|
|
|
LOGNAME=root dh_make --createorig -y -l -p umu-launcher_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
2024-11-02 19:23:35 +01:00
|
|
|
apt-get build-dep ./ -y
|
|
|
|
|
|
|
|
# Build package
|
|
|
|
dpkg-buildpackage --no-sign
|
|
|
|
|
|
|
|
# Move the debs to output
|
|
|
|
cd ../
|
|
|
|
mkdir -p ./output
|
|
|
|
mv ./*.deb ./output/
|