generated from general-packages/pika-pkg-template
22 lines
425 B
Bash
Executable File
22 lines
425 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
. ./pika-build-config.sh
|
|
|
|
# Set the makedeb release you want.
|
|
export MAKEDEB_RELEASE='makedeb'
|
|
|
|
apt-get install wget dotnet-sdk-8.0 -y
|
|
|
|
# Run the install script. Note that it's `bash -c` and not `bash -ci` now.
|
|
bash -c "$(wget -qO - 'https://shlink.makedeb.org/install')"
|
|
|
|
git clone 'https://mpr.makedeb.org/xivlauncher-rb'
|
|
cd xivlauncher-rb/
|
|
makedeb -s
|
|
|
|
mkdir -p ../output
|
|
mv ./*.deb ../output/
|
|
cd ../
|