Hello, This patch updates lagrange to the latest version, tested to compile. Tomorrow I will test how it runs (but judging by the changelog it should be fine).
-- Kind Regards, Wael Karram.
From 14e021667444bab42ac1124d61e36e13341bb0e0 Mon Sep 17 00:00:00 2001 From: wael <[email protected]> Date: Mon, 29 Jun 2026 23:18:13 +0300 Subject: [PATCH] Update Lagrange to 1.20.9 --- pcr/lagrange/PKGBUILD | 67 +++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 34 deletions(-) diff --git a/pcr/lagrange/PKGBUILD b/pcr/lagrange/PKGBUILD index 2edd62ca2..d3e8d8a4b 100644 --- a/pcr/lagrange/PKGBUILD +++ b/pcr/lagrange/PKGBUILD @@ -11,60 +11,59 @@ pkgname=lagrange pkgrel=1 -pkgver=1.18.3 +pkgver=1.20.9 pkgdesc="Beautiful Gemini Client" url="https://gmi.skyjake.fi/lagrange/" arch=('x86_64' 'i686' 'aarch64' 'armv7h') license=("BSD-2-Clause") -source=( - "https://git.skyjake.fi/skyjake/$pkgname/releases/download/v$pkgver/lagrange-$pkgver.tar.gz" -) +source=("https://git.skyjake.fi/gemini/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz") +sha256sums=('97dba8f6785257b270aa5054df610c64a66867346b43a93749a0ec1ad95a0a3b') depends=( - "fribidi" - "harfbuzz" - "hicolor-icon-theme" - "libunistring" - "openssl" - "pcre" - "sdl2" - "zlib" - "mpg123" + "fribidi" + "harfbuzz" + "hicolor-icon-theme" + "libunistring" + "openssl" + "pcre" + "sdl2" + "zlib" + "mpg123" ) makedepends=( - "cmake" - "zip" + "cmake" + "zip" ) optdepends=( - "libwebp: Webp decode support" + "libwebp: Webp decode support" + "libjxl: JPEG XL image decoding" ) prepare() { - cd "$srcdir"/$pkgname-$pkgver + cd $pkgname-$pkgver - # delete vendored libs - use system libs instead - rm -rf lib/fribidi/ - rm -rf lib/harfbuzz/ + # delete vendored libs - use system libs instead + rm -rf lib/fribidi/ + rm -rf lib/harfbuzz/ } build() { - cmake -B build -S "$pkgname-${pkgver}" \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX='/usr' \ - -DENABLE_KERNING=OFF \ - -DTFDN_ENABLE_WARN_ERROR=OFF \ - -DENABLE_FRIBIDI_BUILD=OFF \ - -DENABLE_HARFBUZZ_MINIMAL=OFF \ - -Wno-dev - make -C build + cd $pkgname-$pkgver + cmake -B build -S . \ + -DCMAKE_INSTALL_PREFIX='/usr' \ + -DENABLE_KERNING=OFF \ + -DTFDN_ENABLE_WARN_ERROR=OFF \ + -DENABLE_FRIBIDI_BUILD=OFF \ + -DENABLE_HARFBUZZ_MINIMAL=OFF \ + -Wno-dev + make -C build } package() { - install -Dm644 $pkgname-$pkgver/LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + cd $pkgname-$pkgver + install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - cd build - make DESTDIR="$pkgdir" install + cd build + make DESTDIR="$pkgdir" install } - -sha256sums=('c432e2f4dd35a6cee0f4d5a77974708ec6fed76bc13cc630bb50650acec87e62') -- 2.54.0
pgpVTDAB_y8uh.pgp
Description: OpenPGP digital signature
_______________________________________________ Dev mailing list [email protected] https://lists.parabola.nu/mailman/listinfo/dev
