* update libappimage to 1.0.4.5-5

This commit is contained in:
Alexander Baldeck 2023-09-29 15:46:21 +02:00
parent d6d1845511
commit 008466dc62

View File

@ -4,15 +4,21 @@
pkgname=libappimage pkgname=libappimage
pkgver=1.0.4.5 pkgver=1.0.4.5
_pkgver=1.0.4-5 _pkgver=1.0.4-5
pkgrel=4 pkgrel=5
pkgdesc='Reference implementation of the AppImage specification' pkgdesc='Reference implementation of the AppImage specification'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://appimage.org/' url='https://appimage.org/'
license=(GPL) license=(GPL)
depends=(libarchive squashfuse boost-libs librsvg) depends=(libarchive squashfuse boost-libs librsvg)
makedepends=(cmake wget vim desktop-file-utils boost xdg-utils-cxx) makedepends=(cmake wget vim desktop-file-utils boost xdg-utils-cxx)
source=(https://github.com/AppImage/libappimage/archive/v$_pkgver/$pkgname-$_pkgver.tar.gz) source=(https://github.com/AppImage/libappimage/archive/v$_pkgver/$pkgname-$_pkgver.tar.gz
sha256sums=('2c4e18860a790c5959da6eb064cbd07f165fe6a9b15989491a3a3f176d06af31') https://github.com/AppImageCommunity/libappimage/commit/1e0515b2.patch)
sha256sums=('2c4e18860a790c5959da6eb064cbd07f165fe6a9b15989491a3a3f176d06af31'
'd82b2519ba25a6a8a7743cc738a8c8e61cd49cfaca134741024a32f6cc5007ac')
prepare() {
patch -d $pkgname-$_pkgver -p1 < 1e0515b2.patch # Fix build with GCC 13
}
build() { build() {
cmake -B build -S $pkgname-$_pkgver \ cmake -B build -S $pkgname-$_pkgver \