]> git.immae.eu Git - perso/Immae/Config/AUR.git/blob - PKGBUILD
Initial commit to AUR
[perso/Immae/Config/AUR.git] / PKGBUILD
1 # Maintainer : Immae <ismael.bouya@normalesup.org>
2 # Contributor: <clu>
3 # Contributor: Dominik Fuchs <dominik.fuchs@wur.nl>
4 # Contributor: Michele Vascellari
5
6 pkgname=g3data
7 pkgver=1.5.4
8 pkgrel=1
9 pkgdesc="A tool for extracting data from scanned graphs."
10 arch=('i686' 'x86_64')
11 url="https://github.com/pn2200/g3data"
12 license=('GPL2')
13 depends=('gtk2>=2.6')
14 makedepends=()
15 source=(https://github.com/downloads/pn2200/${pkgname}/${pkgname}-${pkgver}.tar.gz)
16 md5sums=('acb41e54ee5fbf167413218f209c4e3f')
17
18 build() {
19 cd ${srcdir}/${pkgname}-${pkgver}
20 ./configure --prefix=${pkgdir}/usr
21 make
22 }
23
24 package() {
25 cd ${srcdir}/${pkgname}-${pkgver}
26 make install
27 }