forked from OpenELEC/OpenELEC.tv
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from floreal/lakka
mupen64plus (should solve #44)
- Loading branch information
Showing
3 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |