From b516e48e40d10fbca46f01df95e74639887631ed Mon Sep 17 00:00:00 2001 From: kwyxz Date: Mon, 8 Nov 2021 01:59:13 -0800 Subject: [PATCH] bsnes_libretro: bump to latest version - upstream branch (#6377) * Use bsnes libretro port from upstream branch * Fix indentation --- ...ecipe => bsnes_libretro-115.1_20211031.recipe} | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) rename games-emulation/bsnes_libretro/{bsnes_libretro-113.1_20210716.recipe => bsnes_libretro-115.1_20211031.recipe} (69%) diff --git a/games-emulation/bsnes_libretro/bsnes_libretro-113.1_20210716.recipe b/games-emulation/bsnes_libretro/bsnes_libretro-115.1_20211031.recipe similarity index 69% rename from games-emulation/bsnes_libretro/bsnes_libretro-113.1_20210716.recipe rename to games-emulation/bsnes_libretro/bsnes_libretro-115.1_20211031.recipe index b4ae51028..d37be35fb 100644 --- a/games-emulation/bsnes_libretro/bsnes_libretro-113.1_20210716.recipe +++ b/games-emulation/bsnes_libretro/bsnes_libretro-115.1_20211031.recipe @@ -7,11 +7,11 @@ HOMEPAGE="https://bsnes.dev/" COPYRIGHT="2014-2021 Near, the libretro team" LICENSE="GNU GPL v3" REVISION="1" -srcGitRev="39e87fff20e1b4677f5bae92466dcf1deae354d1" -SOURCE_URI="https://github.com/libretro/bsnes-libretro/archive/$srcGitRev.tar.gz" -CHECKSUM_SHA256="460b968b2223f9d6b92061ac7b0c245bb7eb8d9f1263db82a39c515f5db96c41" -SOURCE_FILENAME="bsnes-libretro-${portVersion/_/-}-$srcGitRev.tar.gz" -SOURCE_DIR="bsnes-libretro-$srcGitRev" +srcGitRev="6fc6bf14a39d32dab69c4f9687a81df26d412758" +SOURCE_URI="https://github.com/bsnes-emu/bsnes/archive/$srcGitRev.tar.gz" +CHECKSUM_SHA256="ce1eaf0625ffd73d146aa164baade8fd4fb6e03c742ac0d6f3b2d1e4288646eb" +SOURCE_FILENAME="bsnes-${portVersion/_/-}-$srcGitRev.tar.gz" +SOURCE_DIR="bsnes-$srcGitRev" ADDITIONAL_FILES="bsnes_libretro.info.in" ARCHITECTURES="all !x86_gcc2" @@ -36,11 +36,12 @@ BUILD_PREREQUIRES=" BUILD() { sed -e "s/@DISPLAY_VERSION@/v${portVersion/_/-}/" $portDir/additional-files/bsnes_libretro.info.in > bsnes_libretro.info - make $jobArgs + cd bsnes + make $jobArgs target=libretro } INSTALL() { install -m 0755 -d "$addOnsDir"/libretro - install -m 0644 -t "$addOnsDir"/libretro bsnes_libretro.so bsnes_libretro.info + install -m 0644 -t "$addOnsDir"/libretro bsnes/out/bsnes_libretro.so bsnes_libretro.info }