Date: Friday, October 28, 2022 @ 15:03:24 Author: dvzrv Revision: 1338421
upgpkg: rauc 1.8-3: Rebuild to add GPT support. Configure with --enable-gpt for GPT support (adds dependency on libfdisk.so). Modified: rauc/trunk/PKGBUILD ----------+ PKGBUILD | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-10-28 14:59:24 UTC (rev 1338420) +++ PKGBUILD 2022-10-28 15:03:24 UTC (rev 1338421) @@ -2,13 +2,13 @@ pkgname=rauc pkgver=1.8 -pkgrel=2 +pkgrel=3 pkgdesc="Safe and secure software updates for embedded Linux" arch=(x86_64) url="https://rauc.io" license=(LGPL2.1) depends=(gcc-libs glibc libnl openssl) -makedepends=(curl dbus glib2 json-glib python systemd) +makedepends=(curl dbus glib2 json-glib python systemd util-linux) checkdepends=(squashfs-tools) optdepends=( 'casync: for casync conversion support' @@ -38,7 +38,8 @@ cd $pkgname-$pkgver ./configure \ --prefix=/usr \ - --libexecdir=/usr/lib + --libexecdir=/usr/lib \ + --enable-gpt make } @@ -48,7 +49,12 @@ } package() { - depends+=(libcurl.so lib{gobject,gio,glib}-2.0.so libjson-glib-1.0.so) + depends+=( + curl libcurl.so + glib2 lib{gobject,gio,glib}-2.0.so + json-glib libjson-glib-1.0.so + util-linux-libs libfdisk.so + ) make DESTDIR="$pkgdir/" install -C $pkgname-$pkgver install -vdm 755 "$pkgdir/etc/$pkgname/"
