]> git.immae.eu Git - perso/Immae/Config/AUR.git/commitdiff
Initial commit to AUR
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 30 Oct 2016 09:07:15 +0000 (10:07 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 30 Oct 2016 10:21:54 +0000 (11:21 +0100)
.SRCINFO [new file with mode: 0644]
PKGBUILD [new file with mode: 0644]

diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644 (file)
index 0000000..29d52b4
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Sun Oct 30 09:07:15 UTC 2016
+pkgbase = g3data
+       pkgdesc = A tool for extracting data from scanned graphs.
+       pkgver = 1.5.4
+       pkgrel = 1
+       url = https://github.com/pn2200/g3data
+       arch = i686
+       arch = x86_64
+       license = GPL2
+       depends = gtk2>=2.6
+       source = https://github.com/downloads/pn2200/g3data/g3data-1.5.4.tar.gz
+       md5sums = acb41e54ee5fbf167413218f209c4e3f
+
+pkgname = g3data
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644 (file)
index 0000000..c91eba9
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer : Immae <ismael.bouya@normalesup.org>
+# Contributor: <clu>
+# Contributor: Dominik Fuchs <dominik.fuchs@wur.nl>
+# Contributor: Michele Vascellari
+
+pkgname=g3data
+pkgver=1.5.4
+pkgrel=1
+pkgdesc="A tool for extracting data from scanned graphs."
+arch=('i686' 'x86_64')
+url="https://github.com/pn2200/g3data"
+license=('GPL2')
+depends=('gtk2>=2.6')
+makedepends=()
+source=(https://github.com/downloads/pn2200/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('acb41e54ee5fbf167413218f209c4e3f')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=${pkgdir}/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make install
+}