This commit is contained in:
Arti Zirk 2017-03-17 14:39:55 +02:00
commit 0f54927ae6
2 changed files with 41 additions and 0 deletions

15
.SRCINFO Normal file
View File

@ -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

26
PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
# Maintainer: Arti Zirk <arti.zirk@gmail.com>
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