summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Grunwald2020-04-27 15:02:43 +0200
committerNils Grunwald2020-04-27 15:02:43 +0200
commit5afe606e4a1b46f5619fc2de5989c748faf8af59 (patch)
tree3085ec9114d3328196668fc1f3139328671e9c18
downloadaur-5afe606e4a1b46f5619fc2de5989c748faf8af59.tar.gz
initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD19
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..0d08d7ff3477
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = spire-bin
+ pkgdesc = A Clojure domain specific language tailored to idempotently orchestrate machines in parallel over SSH.
+ pkgver = 0.1.0_alpha.6
+ pkgrel = 1
+ url = https://github.com/epiccastle/spire
+ arch = x86_64
+ license = EPL
+ provides = spire
+ source = https://github.com/epiccastle/spire/releases/download/v0.1.0-alpha.6/spire-0.1.0-alpha.6-linux-amd64.tgz
+ sha256sums = 786153458fa0b5b4232f3c7b7520942daf72ace6cecb975a49b8179b91138584
+
+pkgname = spire-bin
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..dde3599bf1fa
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Nils Grunwald <nils [@] grunwald [dot] fr>
+
+pkgname=spire-bin
+pkgver=0.1.0_alpha.6
+pkgrel=1
+pkgdesc='A Clojure domain specific language tailored to idempotently orchestrate machines in parallel over SSH.'
+arch=('x86_64')
+url='https://github.com/epiccastle/spire'
+license=('EPL')
+provides=('spire')
+conflicts=()
+
+source=("https://github.com/epiccastle/spire/releases/download/v${pkgver/_/-}/${pkgname/\-bin/}-${pkgver/_/-}-linux-amd64.tgz")
+
+sha256sums=('786153458fa0b5b4232f3c7b7520942daf72ace6cecb975a49b8179b91138584')
+
+package() {
+ install -Dm755 "${srcdir}/spire" "${pkgdir}/usr/bin/spire"
+} \ No newline at end of file