mirror of
https://git.suyu.dev/suyu/ext-linux-bin
synced 2024-11-21 14:29:04 -07:00
057e4a1f42
Adds submodule to libusb/hidapi and leaves it at the most recent commit. Add binary package to be installed by the container. Adds build scripts based on the linux-fresh container.
37 lines
712 B
Bash
37 lines
712 B
Bash
#!/bin/bash
|
|
|
|
# This script is meant to make it easy to rebuild packages using the
|
|
# linux-fresh yuzu-emu container.
|
|
|
|
# Run this from within the source directory
|
|
|
|
THIS=$(readlink -e $0)
|
|
USER_ID=${1}
|
|
GROUP_ID=${2}
|
|
VERSION=$(cat VERSION | sed 's/\./_/g')
|
|
BASE_NAME=$(readlink -e $(pwd) | sed 's/.*\///g')
|
|
ARCHIVE_NAME=${BASE_NAME}_${VERSION}.tar.xz
|
|
|
|
|
|
./bootstrap
|
|
|
|
mkdir build || true
|
|
cd build
|
|
|
|
../configure
|
|
make -j$(nproc)
|
|
make install DESTDIR=$(pwd)/out
|
|
|
|
cd ..
|
|
|
|
|
|
mkdir -pv ${BASE_NAME}/
|
|
mv -v build/out/usr/local/* ${BASE_NAME}/
|
|
cp -v ${THIS} ${BASE_NAME}/
|
|
|
|
tar cv ${BASE_NAME} | xz -c > ${ARCHIVE_NAME}
|
|
|
|
if [ -e ${ARCHIVE_NAME} ]; then
|
|
echo "hidapi package can be found at $(readlink -e ${ARCHIVE_NAME})"
|
|
fi
|
|
|