distribution/packages/games/emulators/mupen64plussa/mupen64plussa-ui-console/package.mk
2022-07-28 11:07:14 -04:00

67 lines
2.4 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019-present Shanti Gilbert (https://github.com/shantigilbert)
PKG_NAME="mupen64plussa-ui-console"
PKG_VERSION="42546ab00b23a8052b9c974882628912609990c2"
PKG_SHA256="210324e4ab3445e7891d999780106db0c2c96857b31a723eda61847ac0fdd745"
PKG_ARCH="any"
PKG_LICENSE="GPLv2"
PKG_SITE="https://github.com/mupen64plus/mupen64plus-ui-console"
PKG_URL="https://github.com/mupen64plus/mupen64plus-ui-console/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain libpng SDL2 SDL2_net zlib freetype nasm:host mupen64plussa-core"
PKG_SHORTDESC="mupen64plus-ui-console"
PKG_LONGDESC="Mupen64Plus Standalone Console"
PKG_TOOLCHAIN="manual"
if [ ! "${OPENGL}" = "no" ]; then
PKG_DEPENDS_TARGET+=" ${OPENGL} glu libglvnd"
fi
if [ "${OPENGLES_SUPPORT}" = yes ]; then
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
PKG_MAKE_OPTS_TARGET+="USE_GLES=1"
fi
make_target() {
case ${ARCH} in
arm|aarch64)
export HOST_CPU=aarch64
export USE_GLES=1
BINUTILS="$(get_build_dir binutils)/.aarch64-libreelec-linux-gnueabi"
;;
esac
export APIDIR=$(get_build_dir mupen64plussa-core)/.install_pkg/usr/local/include/mupen64plus
export SDL_CFLAGS="-I${SYSROOT_PREFIX}/usr/include/SDL2 -D_REENTRANT"
export SDL_LDLIBS="-lSDL2_net -lSDL2"
export CROSS_COMPILE="${TARGET_PREFIX}"
export V=1
export VC=0
make -C projects/unix clean
make -C projects/unix all ${PKG_MAKE_OPTS_TARGET}
}
makeinstall_target() {
UPREFIX=${INSTALL}/usr/local
ULIBDIR=${UPREFIX}/lib
UBINDIR=${UPREFIX}/bin
UMANDIR=${UPREFIX}/share/man
UAPPSDIR=${UPREFIX}/share/applications
UICONSDIR=${UPREFIX}/share/icons/hicolor
mkdir -p ${UBINDIR}
cp ${PKG_BUILD}/projects/unix/mupen64plus ${UBINDIR}
#$STRIP ${UBINDIR}/mupen64plus
chmod 0755 ${UBINDIR}/mupen64plus
mkdir -p ${UMANDIR}/man6
cp ${PKG_BUILD}/doc/mupen64plus.6 ${UMANDIR}/man6
chmod 0644 ${UMANDIR}/man6/mupen64plus.6
mkdir -p ${UAPPSDIR}
cp ${PKG_BUILD}/data/mupen64plus.desktop ${UAPPSDIR}
chmod 0644 ${UAPPSDIR}/mupen64plus.desktop
mkdir -p ${UICONSDIR}/48x48/apps
cp ${PKG_BUILD}/data/icons/48x48/apps/mupen64plus.png ${UICONSDIR}/48x48/apps
chmod 0644 ${UICONSDIR}/48x48/apps/mupen64plus.png
mkdir -p ${UICONSDIR}/scalable/apps
cp ${PKG_BUILD}/data/icons/scalable/apps/mupen64plus.svg ${UICONSDIR}/scalable/apps
chmod 0644 ${UICONSDIR}/scalable/apps/mupen64plus.svg
}