ext-linux-bin/icu/build_icu.sh
lat9nq 8d5ef24953 qt: Add Qt 5.15.2 package and build scripts
Qt but missing some modules that wouldn't build, such as qtwebengine.

qt: Update Qt 5.15.2 and build scripts

Mostly the same package, but fixes numerous bugs with the previous:
missing xcb and related libraries, rpaths of binaries don't link to
each other, directory names are now usable in yuzu.
2021-05-26 01:32:05 -04:00

23 lines
443 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=5_15_2
BASE_NAME=$(readlink -e $(pwd) | sed 's/.*\///g')
ARCHIVE_NAME=${BASE_NAME}_${VERSION}.tar.xz
NUM_CORES=$(nproc)
mkdir build || true
cd build
mkdir out || true
../configure
make -j${NUM_CORES} install DESTDIR=out