Date: Thursday, May 11, 2023 @ 03:23:15 Author: grawlinson Revision: 1459869
upgpkg: ft2-clone 1.67-1; new upstream release Modified: ft2-clone/trunk/PKGBUILD ft2-clone/trunk/templatify-build-date.patch -----------------------------+ PKGBUILD | 14 +++++++------- templatify-build-date.patch | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-05-11 03:19:50 UTC (rev 1459868) +++ PKGBUILD 2023-05-11 03:23:15 UTC (rev 1459869) @@ -3,7 +3,7 @@ # Contributor: Alex Gentilucci <[email protected]> pkgname=ft2-clone -pkgver=1.63 +pkgver=1.67 pkgrel=1 pkgdesc='Portable Fasttracker II clone' arch=('x86_64') @@ -14,6 +14,8 @@ 'custom:CC-BY-NC-SA-4.0' ) depends=( + 'glibc' + 'gcc-libs' 'alsa-lib' 'sdl2' 'flac' @@ -25,13 +27,13 @@ 'cmake' 'gendesk' ) -_commit='f7063748617e4dc6742294e8a471383e7b2ba497' +_commit='fdcc53f651378abc003591a8e2371af7d6b393a1' source=( "$pkgname::git+https://github.com/8bitbubsy/ft2-clone#commit=$_commit" 'templatify-build-date.patch' ) b2sums=('SKIP' - '191f6b3e3dbff4b4751867d62bf46a3c9a47cff93f8d16be79caaa036a2e1a2e7e41b6cac3c58246a58a9e4075bc106edb851e6fc38fac2f8e3d16396a7cebe3') + '530202416c15b7a5b35e0ff56bb633fed97e28d73bc4bfc1737a03098dfa6dfb0aa16751b58b3c7358f27cf7c0052143b752edeabe016a475b72e51f4c027543') pkgver() { cd "$pkgname" @@ -82,10 +84,8 @@ cd "$pkgname" - # application icons - for i in 16 32 48 128 256; do - install -vDm644 "ft2-clone-macos_${i}x${i}x32.png" "$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/ft2-clone.png" - done + # application icon + install -vDm644 ft2-clone-macos_512x512x32.png "$pkgdir/usr/share/icons/hicolor/512x512/apps/$pkgname.png" # desktop file install -vDm644 -t "$pkgdir/usr/share/applications" ft2-clone.desktop Modified: templatify-build-date.patch =================================================================== --- templatify-build-date.patch 2023-05-11 03:19:50 UTC (rev 1459868) +++ templatify-build-date.patch 2023-05-11 03:23:15 UTC (rev 1459869) @@ -1,12 +1,12 @@ --- a/src/ft2_about.c +++ b/src/ft2_about.c -@@ -194,7 +194,7 @@ void showAboutScreen(void) // called once when About screen is opened +@@ -176,7 +176,7 @@ void showAboutScreen(void) // called once when about screen is opened showPushButton(PB_EXIT_ABOUT); - sprintf(customText3, "v%s (%s)", PROG_VER_STR, __DATE__); + sprintf(customText3, "v%s (%s)", PROG_VER_STR, PROG_VER_DATE); - customText1X = (SCREEN_W - textWidth(customText1)) >> 1; + customText1X = (SCREEN_W - textWidth(customText1)) / 2; customText2X = (SCREEN_W-8) - textWidth(customText2); customText3X = (SCREEN_W-8) - textWidth(customText3); --- a/src/ft2_header.h @@ -14,7 +14,7 @@ @@ -13,6 +13,7 @@ #include "ft2_replayer.h" - #define PROG_VER_STR "1.63" + #define PROG_VER_STR "1.67" +#define PROG_VER_DATE "@DATE@" // do NOT change these! It will only mess things up...
