diff options
-rw-r--r-- | pcr/grail/PKGBUILD | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/pcr/grail/PKGBUILD b/pcr/grail/PKGBUILD index 665c0f270..e05381704 100644 --- a/pcr/grail/PKGBUILD +++ b/pcr/grail/PKGBUILD @@ -1,12 +1,15 @@ -# Maintainer (Arch): Nicolas Quiénot <niQo @ aur> -# Contributor (Arch): Xiao-Long Chen <chenxiaolong@cxl.epac.to> -# Contributor (Arch): thn81 <root@scrat> +# Maintainer (AUR): Nicolas Quiénot <niQo @ aur> +# Contributor (AUR): Xiao-Long Chen <chenxiaolong@cxl.epac.to> +# Contributor (AUR): thn81 <root@scrat> + +# parabola changes and rationale: +# no changes. pkgname=grail -pkgver=3.1.0 +pkgver=3.1.1 pkgrel=1 pkgdesc="Gesture Recognition And Instantiation Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'armv7h') url="https://launchpad.net/grail" license=('GPL') depends=('frame>=2.5.0' 'libxi') @@ -14,21 +17,18 @@ makedepends=('inputproto') conflicts=('utouch-grail') replaces=('utouch-grail') options=('!libtool') -source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz") +source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2") +md5sums=('0df1b3ec6167920f310e2effe6e2ad44') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - # Static library needed for tests - ./configure --prefix=/usr # --disable-static + cd "$pkgname-$pkgver" + ./configure --prefix=/usr MAKEFLAGS="-j1" make ${MAKEFLAGS} } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}/" install + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install } -md5sums=('f0f8c56430ee3717778dec6452201c33') |