changeset 865:f45dc1b32c96

emulation/libretro-handy: initial import, closes #2151
author David Demelier <markand@malikania.fr>
date Sun, 25 Aug 2019 11:59:05 +0200
parents 8b84d9b29833
children 1cb4148ca53f
files emulation/libretro-handy/libretro-handy.sh emulation/libretro-handy/libretro-handy.sha1
diffstat 2 files changed, 56 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-handy/libretro-handy.sh	Sun Aug 25 11:59:05 2019 +0200
@@ -0,0 +1,54 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+_COMMIT=6b19a4fad1b394f6a1351c88f60991d4878ff05b
+_SCOMMIT=$(echo $_COMMIT | awk '{ print substr($1, 0, 7) }')
+
+PKGNAME=libretro-handy
+PKGVERSION=$_SCOMMIT
+PKGREVISION=1
+PKGLICENSE="ZLIB"
+PKGSUMMARY="libretro implementation for handy (Atari Lynx)"
+PKGDOWNLOAD="https://github.com/libretro/libretro-handy/archive/$_COMMIT.tar.gz
+             https://raw.github.com/libretro/libretro-super/master/dist/info/handy_libretro.info"
+
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${CXX:=clang++}
+: ${CXXFLAGS:=-O2}
+
+build()
+{
+	rm -rf $PKGNAME-$_COMMIT
+	tar xvf $_COMMIT.tar.gz
+	cd $PKGNAME-$_COMMIT
+
+	sed -i -e '534iCFLAGS+= $(EXTRA_CFLAGS)' Makefile
+	sed -i -e '534iCXXFLAGS+= $(EXTRA_CXXFLAGS)' Makefile
+
+	make \
+		GIT_VERSION="$_SCOMMIT" \
+		CC="$CC" \
+		CXX="$CXX" \
+		EXTRA_CFLAGS="$CFLAGS" \
+		EXTRA_CXXFLAGS="$CXXFLAGS"
+	install -Dm0644 ../handy_libretro.info $DESTDIR/share/libretro/info/handy_libretro.info
+	install -Dm0644 handy_libretro.so $DESTDIR/lib/libretro/handy_libretro.so
+
+	cd ..
+	rm -rf $PKGNAME-$_COMMIT
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-handy/libretro-handy.sha1	Sun Aug 25 11:59:05 2019 +0200
@@ -0,0 +1,2 @@
+62b55fb1d5c03e4720e68bfa550fee06f65a72f6  handy_libretro.info
+6d05f2c21f67ec76a59a89ff658e0325c2e7d8fd  6b19a4fad1b394f6a1351c88f60991d4878ff05b.tar.gz