changeset 854:1cbcb1fcee1b

emulation/libretro-crocods: initial import, closes #2135
author David Demelier <markand@malikania.fr>
date Sat, 24 Aug 2019 16:06:11 +0200
parents fe84f2cd789a
children f5bef4d52dad
files emulation/libretro-crocods/libretro-crocods.sh emulation/libretro-crocods/libretro-crocods.sha1
diffstat 2 files changed, 52 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-crocods/libretro-crocods.sh	Sat Aug 24 16:06:11 2019 +0200
@@ -0,0 +1,50 @@
+#!/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=a7d1098000376a39d70db171863c8f46da7de07d
+_SCOMMIT=$(echo $_COMMIT | awk '{ print substr($1, 0, 7) }')
+
+PKGNAME=libretro-crocods
+PKGVERSION=$_SCOMMIT
+PKGREVISION=1
+PKGLICENSE="MIT"
+PKGSUMMARY="libretro implementation for crocods (Amstrad CPC)"
+PKGDOWNLOAD="https://github.com/libretro/libretro-crocods/archive/$_COMMIT.tar.gz
+             https://raw.github.com/libretro/libretro-super/master/dist/info/crocods_libretro.info"
+
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+
+build()
+{
+	rm -rf $PKGNAME-$_COMMIT
+	tar xvf $_COMMIT.tar.gz
+	cd $PKGNAME-$_COMMIT
+
+	sed -i -e '278iCFLAGS+= $(EXTRA_CFLAGS)' Makefile
+
+	make \
+		GIT_VERSION="$_SCOMMIT" \
+		CC="$CC" \
+		EXTRA_CFLAGS="$CFLAGS" \
+		platform=unix
+	install -Dm0644 ../crocods_libretro.info $DESTDIR/share/libretro/info/crocods_libretro.info
+	install -Dm0644 crocods_libretro.so $DESTDIR/lib/libretro/crocods_libretro.so
+
+	cd ..
+	rm -rf $PKGNAME-$_COMMIT
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/emulation/libretro-crocods/libretro-crocods.sha1	Sat Aug 24 16:06:11 2019 +0200
@@ -0,0 +1,2 @@
+0766875ff6ed64653a13e5d33e2385fbfea66962  crocods_libretro.info
+e7db2a76b51694c4ffa347f92c87ebc74002596e  a7d1098000376a39d70db171863c8f46da7de07d.tar.gz