commit 0f54927ae6e481ef6f3a72cca9d78873840948bd Author: Arti Zirk Date: Fri Mar 17 14:39:55 2017 +0200 Init diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..ed678b5 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = rauc + 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. + pkgver = 0.1 + pkgrel = 1 + url = https://github.com/rauc/rauc + arch = i686 + arch = x86_64 + license = GPL + depends = curl + depends = json-glib + source = https://github.com/rauc/rauc/releases/download/v0.1/rauc-0.1.tar.xz + md5sums = 33c6f45b71f9b9c082fa852c3d5915d9 + +pkgname = rauc + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..0e2f6c0 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Arti Zirk + +pkgname=rauc +pkgver=0.1 +pkgrel=1 +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') +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) +md5sums=('33c6f45b71f9b9c082fa852c3d5915d9') +# 'SKIP') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} +# vim:syntax=sh