rauc/PKGBUILD

33 lines
1.0 KiB
Bash
Raw Permalink Normal View History

2017-03-17 14:39:55 +02:00
# Maintainer: Arti Zirk <arti.zirk@gmail.com>
pkgname=rauc
2022-10-01 23:43:07 +03:00
pkgver=1.8
2022-02-10 10:16:44 +02:00
pkgrel=1
2017-03-17 14:39:55 +02:00
pkgdesc="RAUC controls the update process on embedded linux systems. It is both a target application that runs as an update client and a host/target tool that allows you to create, inspect and modify installation artifacts."
arch=('i686' 'x86_64')
url="https://github.com/rauc/rauc"
license=('GPL')
depends=('curl' 'json-glib')
2017-03-17 14:52:00 +02:00
makedepends=('python')
2022-01-07 11:42:46 +02:00
optdepends=(
'casync: Casync integration support'
'squashfs-tools: Extract or print the info of a bundle'
)
2018-08-20 18:24:44 +03:00
source=(https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz
https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-$pkgver.tar.xz.asc)
2022-10-01 23:43:07 +03:00
sha256sums=('d233247c1763b1c56c851d0adef2094b7aa2fcd72decf524a8ac0419188e0978'
2019-07-10 09:35:51 +03:00
'SKIP')
2022-02-10 10:16:44 +02:00
validpgpkeys=('977843FD5C3EBF76BAD4008EA58CC53DBF05E090')
2017-03-17 14:39:55 +02:00
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}
# vim:syntax=sh