Skip to content

Commit

Permalink
Merge pull request #62 from floreal/lakka
Browse files Browse the repository at this point in the history
mupen64plus (should solve #44)
  • Loading branch information
kivutar committed Mar 3, 2014
2 parents ac61733 + 74e2138 commit b59287e
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 1 deletion.
45 changes: 45 additions & 0 deletions packages/RPi-Lakka/mupen64plus/package.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2012 Stephan Raue ([email protected])
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC.tv; see the file COPYING. If not, write to
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
# http://www.gnu.org/copyleft/gpl.html
################################################################################

PKG_NAME="mupen64plus"
PKG_VERSION="b28bb4e"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPLv3"
PKG_SITE="https://github.com/libretro/mupen64plus-libretro"
PKG_URL="$LAKKA_MIRROR/$PKG_NAME-$PKG_VERSION.tar.xz"
PKG_DEPENDS=""
PKG_BUILD_DEPENDS_TARGET="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="RetroArch"
PKG_SHORTDESC="libretro implementation of Doom"
PKG_LONGDESC="libretro implementation of Doom"

PKG_IS_ADDON="no"
PKG_AUTORECONF="no"

make_target() {
make platform=rpi
}

makeinstall_target() {
mkdir -p $INSTALL/usr/lib/libretro
cp mupen64plus_libretro.so $INSTALL/usr/lib/libretro/mupen64plus_libretro.so
}
2 changes: 1 addition & 1 deletion packages/RPi-Lakka/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://github.com/Niouby/OpenELEC.tv"
PKG_URL=""
PKG_DEPENDS="RetroArch vecx snes9x-next dosbox dinothawr prboom mednafen-pce fba pcsx_rearmed scummvm handy picodrive pocketsnes genesis-plus-gx nxengine fceu-next gambatte stella imame4all vbam mednafen-gba vba-next meteor nestopia quicknes libretro-ffmpeg retroarch-joypad-autoconfig core-info"
PKG_DEPENDS="RetroArch mupen64plus vecx snes9x-next dosbox dinothawr prboom mednafen-pce fba pcsx_rearmed scummvm handy picodrive pocketsnes genesis-plus-gx nxengine fceu-next gambatte stella imame4all vbam mednafen-gba vba-next meteor nestopia quicknes libretro-ffmpeg retroarch-joypad-autoconfig core-info"
PKG_BUILD_DEPENDS=""
PKG_PRIORITY="optional"
PKG_SECTION="virtual"
Expand Down
45 changes: 45 additions & 0 deletions tools/mkpkg/mkpkg_mupen64plus
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/bin/sh
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2012 Stephan Raue ([email protected])
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC.tv; see the file COPYING. If not, write to
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
# http://www.gnu.org/copyleft/gpl.html
################################################################################

echo "getting sources..."
if [ ! -d mupen64plus.git ]; then
git clone https://github.com/libretro/mupen64plus-libretro.git -b master mupen64plus.git
fi

cd mupen64plus.git
git pull
GIT_REV=`git log -n1 --format=%h`
cd ..

echo "copying sources..."
rm -rf mupen64plus-$GIT_REV
cp -R mupen64plus.git mupen64plus-$GIT_REV
rm -rf mupen64plus.git

echo "cleaning sources..."
rm -rf mupen64plus-$GIT_REV/.git
rm mupen64plus-$GIT_REV/.gitignore

echo "packing sources..."
tar cvJf mupen64plus-$GIT_REV.tar.xz mupen64plus-$GIT_REV

echo "remove temporary sourcedir..."
rm -rf mupen64plus-$GIT_REV

0 comments on commit b59287e

Please sign in to comment.