distribution/packages/games/emulators/mupen64plussa/mupen64plussa-ui-console/package.mk
2022-03-15 10:07:58 -07:00

56 lines
2.1 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="b5f62979ed77e526877c9c67dbb8568a3511347c"
PKG_SHA256="0e7da477e58652ecadcf78a474fd9007f613ba9062364bf197ea88f5a7c12ed1"
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 ${OPENGLES} libpng SDL2 SDL2_net zlib freetype nasm:host mupen64plussa-core"
PKG_SHORTDESC="mupen64plus-ui-console"
PKG_LONGDESC="Mupen64Plus Standalone Console"
PKG_TOOLCHAIN="manual"
PKG_MAKE_OPTS_TARGET+="USE_GLES=1"
make_target() {
export HOST_CPU=aarch64
export APIDIR=$(get_build_dir mupen64plussa-core)/.install_pkg/usr/local/include/mupen64plus
export USE_GLES=1
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
BINUTILS="$(get_build_dir binutils)/.aarch64-libreelec-linux-gnueabi"
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
}