diff --git a/packages/RPi-Lakka/package.mk b/packages/RPi-Lakka/package.mk index 8019996aef8..d3917e6ca4c 100644 --- a/packages/RPi-Lakka/package.mk +++ b/packages/RPi-Lakka/package.mk @@ -25,7 +25,7 @@ PKG_ARCH="any" PKG_LICENSE="GPL" PKG_SITE="https://github.com/Niouby/OpenELEC.tv" PKG_URL="" -PKG_DEPENDS="RetroArch 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 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" diff --git a/packages/RPi-Lakka/vecx/package.mk b/packages/RPi-Lakka/vecx/package.mk new file mode 100644 index 00000000000..7dd93b6d6f9 --- /dev/null +++ b/packages/RPi-Lakka/vecx/package.mk @@ -0,0 +1,55 @@ +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) +# +# 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="vecx" +PKG_VERSION="a2163a7" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="GPL" +PKG_SITE="https://github.com/libretro/libretro-vecx" +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 adaptation of vecx" +PKG_LONGDESC="libretro adaptation of vecx" + +PKG_IS_ADDON="no" +PKG_AUTORECONF="no" + +pre_configure_target() { + sed -i -e "s/if (CMAKE_BUILD_TYPE STREQUAL \"Libretro\")/if (1)/" ../CMakeLists.txt +} + +configure_target() { + cmake -DCMAKE_TOOLCHAIN_FILE=$CMAKE_CONF \ + -DCMAKE_INSTALL_PREFIX=/usr \ + .. +} + +make_target() { + : +} + +#makeinstall_target() { +# mkdir -p $INSTALL/usr/lib/libretro +# cp nxengine_libretro.so $INSTALL/usr/lib/libretro/ +#} diff --git a/tools/mkpkg/mkpkg_vecx b/tools/mkpkg/mkpkg_vecx new file mode 100755 index 00000000000..40d10502010 --- /dev/null +++ b/tools/mkpkg/mkpkg_vecx @@ -0,0 +1,44 @@ +#!/bin/sh +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) +# +# 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 vecx.git ]; then + git clone https://github.com/libretro/libretro-vecx.git -b master vecx.git + fi + + cd vecx.git + git pull + GIT_REV=`git log -n1 --format=%h` + cd .. + +echo "copying sources..." + rm -rf vecx-$GIT_REV + cp -R vecx.git vecx-$GIT_REV + +echo "cleaning sources..." + rm -rf vecx-$GIT_REV/.git + rm vecx-$GIT_REV/.gitignore + +echo "packing sources..." + tar cvJf vecx-$GIT_REV.tar.xz vecx-$GIT_REV + +echo "remove temporary sourcedir..." + rm -rf vecx-$GIT_REV