Skip to content

Commit

Permalink
add vecx
Browse files Browse the repository at this point in the history
  • Loading branch information
MorganeAD committed Feb 28, 2014
1 parent e552d92 commit ac61733
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 1 deletion.
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 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"
Expand Down
55 changes: 55 additions & 0 deletions packages/RPi-Lakka/vecx/package.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
################################################################################
# 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="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/
#}
44 changes: 44 additions & 0 deletions tools/mkpkg/mkpkg_vecx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/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 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

0 comments on commit ac61733

Please sign in to comment.