Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id CB23B781B99 for <~alpine/aports@lists.alpinelinux.org>; Wed, 21 Aug 2019 11:36:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 179F729FFA for <~alpine/aports@lists.alpinelinux.org>; Wed, 21 Aug 2019 13:36:15 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id OlVcv0_3PAnG; Wed, 21 Aug 2019 13:36:13 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1566387124; bh=j84/fddT6bg/ue0FXYOSWCczL/q4qLXDStr66wK9YJ0=; h=From:To:Cc:Subject:Date; b=GA1vI99Rsf7LZ8oQQSEs0tnK9ioCnIlAx5+6CjbFzUmSQE7xfCi8W+PYvwKPQb7J3 d7b/MyM7w1MNXU5khJU5aZrorjh1xBRDT+yCDzSl4ylw24BDMwmae1icQAdb7eU5k7 fOz5qc4V0BfkE7F24czkhbmr81FlQSsFI/zuG0nxOTEFAWd5JMTcXVncWtXK5+2adZ iulp/msknbS6MapKs2C+ozcxtkRpEI/iQlmt6rx1hC4DXrFQz/UxW/qDOYNQQdGOWc k7VjZbBwRWfOLpshH9Wmc/Wax/AUYm3c0knfcrD9txC18Wya0xbBNle5nYX/m4e5qO IxnMgnYAwX43Q== To: ~alpine/aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH 1/2] testing/libretro-database: new aport Date: Wed, 21 Aug 2019 13:31:59 +0200 Message-Id: <20190821113200.25906-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/libretro-database/APKBUILD | 19 +++++++++++++++++++ .../fix-busybox-incompability.patch | 13 +++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 testing/libretro-database/APKBUILD create mode 100644 testing/libretro-database/fix-busybox-incompability.patch diff --git a/testing/libretro-database/APKBUILD b/testing/libretro-database/APKBUILD new file mode 100644 index 0000000000..513f0905ff --- /dev/null +++ b/testing/libretro-database/APKBUILD @@ -0,0 +1,19 @@ +# Contributor: Bart Ribbers +# Maintainer: Bart Ribbers +pkgname=libretro-database +pkgver=1.7.7 +pkgrel=0 +arch="noarch" +url="https://www.libretro.com/" +pkgdesc="Libretro core info files" +license="none" # No code, just info files +source="$pkgname-$pkgver.tar.gz::https://github.com/libretro/libretro-database/archive/v$pkgver.tar.gz + fix-busybox-incompability.patch" +options="!check" # No code to test + +package() { + DESTDIR="$pkgdir" make install +} + +sha512sums="9e0c590439e9de0e3d3ce3b0d43f777eb39e118753f4acd87d902329bbe6d2b6d18b7554bbaba2bc5b4e44c325490e5e543c5b07eae37be0cce41343d18b965b libretro-database-1.7.7.tar.gz +41670da3518bf5aa80f0916e94f81c6aed4c8ca5c1cae941c521440d5c019b96c3594e2efc3849e397d71deda8b9db7bed6fabb0ecf305572688179bbffc1406 fix-busybox-incompability.patch" diff --git a/testing/libretro-database/fix-busybox-incompability.patch b/testing/libretro-database/fix-busybox-incompability.patch new file mode 100644 index 0000000000..24c4467dc8 --- /dev/null +++ b/testing/libretro-database/fix-busybox-incompability.patch @@ -0,0 +1,13 @@ +diff --git a/Makefile b/Makefile +index 0c3a33fd..65436325 100644 +--- a/Makefile ++++ b/Makefile +@@ -16,7 +16,7 @@ all: + + install: + mkdir -p $(DESTDIR)$(INSTALLDIR) +- cp -ar -t $(DESTDIR)$(INSTALLDIR) cht cursors rdb ++ cp -ar cht cursors rdb $(DESTDIR)$(INSTALLDIR) + find $(DESTDIR)$(INSTALLDIR) -type f -name "*.zip" -delete + find $(DESTDIR)$(INSTALLDIR) -type f -name "*.xml" -delete + -- 2.21.0