summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Nowell2017-03-16 09:49:17 -0700
committerAnthony Nowell2017-03-16 09:49:17 -0700
commitd1e5129d945eea0c1695c0e7c7a8159e41b83d30 (patch)
treeffb162b79c78d3a6a196263fb1b4b59e7a38c4dd
parent5884283995cb2d6a1223ee1ee77cb2aa5a8b369e (diff)
downloadaur-d1e5129d945eea0c1695c0e7c7a8159e41b83d30.tar.gz
Update to beta.4
-rw-r--r--.SRCINFO8
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD8
3 files changed, 14 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ac80a99536ae..2ee7a2bffd0d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,15 @@
+# Generated by mksrcinfo v8
+# Thu Mar 16 16:45:49 UTC 2017
pkgbase = algorithmia-bin
pkgdesc = Algorithmia command line interface tools
- pkgver = 1.0.0_beta.2
+ pkgver = 1.0.0_beta.4
pkgrel = 1
url = https://algorithmia.com/
arch = x86_64
license = MIT
conflicts = algorithmia-bin
- source = https://github.com/algorithmiaio/algorithmia-cli/releases/download/v1.0.0-beta.2/algorithmia_linux64.tar.gz
- md5sums = 6d75ff02fe21d3151944fb6907431c8b
+ source = https://github.com/algorithmiaio/algorithmia-cli/releases/download/v1.0.0-beta.4/algorithmia-v1.0.0-beta.4-x86_64-unknown-linux-gnu.tar.gz
+ md5sums = b84ca1e619dcae5e2d0fe8fad7dc9fe5
pkgname = algorithmia-bin
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..c230193ac7b8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+src
+pkg
+*.tar.gz
+*.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
index fe3a767781b6..a7c41c702b89 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Anthony Nowell <anowell@gmail.com>
pkgname=algorithmia-bin
-pkgver=1.0.0_beta.2
+pkgver=1.0.0_beta.4
pkgrel=1
pkgdesc="Algorithmia command line interface tools"
arch=('x86_64')
@@ -9,10 +9,12 @@ url="https://algorithmia.com/"
license=('MIT')
depends=('')
conflicts=('algorithmia-bin')
-source=("https://github.com/algorithmiaio/algorithmia-cli/releases/download/v${pkgver//_/-}/algorithmia_linux64.tar.gz")
-md5sums=('6d75ff02fe21d3151944fb6907431c8b')
+source=("https://github.com/algorithmiaio/algorithmia-cli/releases/download/v${pkgver//_/-}/algorithmia-v${pkgver//_/-}-x86_64-unknown-linux-gnu.tar.gz")
+md5sums=('b84ca1e619dcae5e2d0fe8fad7dc9fe5')
package() {
mkdir -p "$pkgdir/usr/bin/"
install -m 755 algo "$pkgdir/usr/bin/"
+ # install -m 644 completions/bash/algo "$pkgdir/usr/share/bash-completion/completions/"
+ # install -m 644 completions/zsh/_algo "$pkgdir/usr/local/share/share/zsh/site-functions/"
}