summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorExcitable Snowball2018-10-01 03:30:49 -0700
committerExcitable Snowball2018-10-01 03:30:49 -0700
commit196db8cca5002f9acec71208433a847006a801e2 (patch)
tree8d05fa5f6f3d0c73bc73bc1cf3810f58b7fef66a
downloadaur-196db8cca5002f9acec71208433a847006a801e2.tar.gz
4.1 release
-rw-r--r--.SRCINFO15
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD19
3 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..df50a2e3fb62
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Mon Oct 1 10:29:32 UTC 2018
+pkgbase = webplotdigitizer-bin
+ pkgdesc = Tool to extract numerical data from plot images
+ pkgver = 4.1
+ pkgrel = 1
+ url = https://automeris.io/WebPlotDigitizer/
+ arch = x86_64
+ license = AGPL3
+ source = https://automeris.io/downloads/WebPlotDigitizer-4.1-linux-x64.zip
+ md5sums = 6d6b74f94f5922cfe9b24a1dbe035edd
+ sha256sums = 7cfffa19d160c07df71121fe005fdcdb1fdd48dd3e70fb391dcbe5ca529bafd8
+
+pkgname = webplotdigitizer-bin
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..6cd32e20da9b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+WebPlotDigitizer-*-linux-x64.zip
+pkg
+src
+*.pkg.tar.xz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..2d91b0b30412
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Excitable Snowball <excitablesnowball@gmail.com>
+
+pkgname=webplotdigitizer-bin
+pkgver=4.1
+pkgrel=1
+pkgdesc='Tool to extract numerical data from plot images'
+url='https://automeris.io/WebPlotDigitizer/'
+arch=('x86_64')
+license=('AGPL3')
+depends=()
+source=('https://automeris.io/downloads/WebPlotDigitizer-4.1-linux-x64.zip')
+md5sums=('6d6b74f94f5922cfe9b24a1dbe035edd')
+sha256sums=('7cfffa19d160c07df71121fe005fdcdb1fdd48dd3e70fb391dcbe5ca529bafd8')
+
+package() {
+ mkdir -p "$pkgdir/opt" "$pkgdir/usr/bin"
+ cp -r WebPlotDigitizer-linux-x64 "$pkgdir/opt/WebPlotDigitizer"
+ ln -s /opt/WebPlotDigitizer/WebPlotDigitizer "$pkgdir/usr/bin/WebPlotDigitizer"
+}