43 lines
1.5 KiB
Makefile
43 lines
1.5 KiB
Makefile
|
################################################################################
|
||
|
#
|
||
|
# Copyright (C) 2020 351ELEC team (https://github.com/fewtarius/351ELEC)
|
||
|
#
|
||
|
# This Program is free software; you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||
|
# any later version.
|
||
|
#
|
||
|
# This Program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
PKG_NAME="gearboy"
|
||
|
PKG_VERSION="cd9c5f76145ee7063fd1708d51f98a6d2d373b9d"
|
||
|
PKG_SHA256="7030a9647f11ab0667e9074b1006d143b416ce22803e586b2beea3ee0347a787"
|
||
|
PKG_REV="1"
|
||
|
PKG_ARCH="any"
|
||
|
PKG_LICENSE="GPL"
|
||
|
PKG_SITE="https://github.com/drhelius/Gearboy"
|
||
|
PKG_URL="$PKG_SITE/archive/$PKG_VERSION.tar.gz"
|
||
|
PKG_DEPENDS_TARGET="toolchain"
|
||
|
PKG_PRIORITY="optional"
|
||
|
PKG_SECTION="libretro"
|
||
|
PKG_SHORTDESC="Game Boy / Gameboy Color emulator for iOS, Mac, Raspberry Pi, Windows and Linux"
|
||
|
PKG_LONGDESC="Game Boy / Gameboy Color emulator for iOS, Mac, Raspberry Pi, Windows and Linux"
|
||
|
|
||
|
PKG_IS_ADDON="no"
|
||
|
PKG_TOOLCHAIN="make"
|
||
|
PKG_AUTORECONF="no"
|
||
|
|
||
|
make_target() {
|
||
|
make -C platforms/libretro/
|
||
|
}
|
||
|
|
||
|
makeinstall_target() {
|
||
|
mkdir -p $INSTALL/usr/lib/libretro
|
||
|
cp platforms/libretro/gearboy_libretro.so $INSTALL/usr/lib/libretro/
|
||
|
}
|