summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Torres2017-06-21 14:16:17 -0400
committerSantiago Torres2017-06-21 14:16:17 -0400
commit99dbf4682b3fdc8e7569bad840499e49b26b9d4f (patch)
treea81c7fb71f88503a330afeb3f49c883b82598bfd
downloadaur-99dbf4682b3fdc8e7569bad840499e49b26b9d4f.tar.gz
v0.15: adds upstream release
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD22
2 files changed, 35 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..afbe21468afa
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = repeatr-bin
+ pkgdesc = Repeatr is a tool for sandboxing processes so they become guaranteed runable on another machine (at another time, at another place -- even offline).
+ pkgver = 0.15
+ pkgrel = 1
+ url = https://repeatr.io
+ arch = x86_64
+ license = Apache
+ depends = glibc
+ source_x86_64 = https://github.com/polydawn/repeatr/releases/download/release%2Fv0.15/repeatr-linux-amd64-v0.15.tar.gz
+ sha512sums_x86_64 = 9f5746b2e2e4981516b3272067fce6463420217fc1e0ce3c8949a87961f95bad9d4c5b1e9797daa4a0f47718e4b4d8b4538c63345ad1080d1350a90094e472e7
+
+pkgname = repeatr-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..ad994e66c9ba
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,22 @@
+# Maintainer: Santiago Torres-Arias <santiago at archlinux dot org>
+
+pkgname=repeatr-bin
+pkgver=0.15
+_language='en-US'
+pkgrel=1
+pkgdesc="Repeatr is a tool for sandboxing processes so they become guaranteed runable on another machine (at another time, at another place -- even offline)."
+arch=('x86_64')
+url="https://repeatr.io"
+license=('Apache')
+depends=('glibc')
+source_x86_64=("https://github.com/polydawn/repeatr/releases/download/release%2Fv${pkgver}/repeatr-linux-amd64-v${pkgver}.tar.gz")
+# source+=()
+sha512sums_x86_64=('9f5746b2e2e4981516b3272067fce6463420217fc1e0ce3c8949a87961f95bad9d4c5b1e9797daa4a0f47718e4b4d8b4538c63345ad1080d1350a90094e472e7')
+validpgpkeys=('')
+
+package() {
+ cd $srcdir
+
+ install -Dm 755 repeatr $pkgdir/usr/bin/repeatr
+
+}