diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-05-07 22:31:25 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-05-07 22:31:25 -0300 |
commit | 9f7fb9c12e84f20cd108b933f1a51e216f76cd98 (patch) | |
tree | 06520d9024b40745b94f02d0d3419386e6496863 /extra/gjs/PKGBUILD | |
parent | 6cc893589a6bd208f2b7711f985e17df7a6df816 (diff) | |
parent | a86ff663185661ee304bb1f6d00d982102dd706d (diff) |
Merge branch 'master' of gparabola:abslibre-mips64el
Diffstat (limited to 'extra/gjs/PKGBUILD')
-rw-r--r-- | extra/gjs/PKGBUILD | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/extra/gjs/PKGBUILD b/extra/gjs/PKGBUILD index b7545d160..4de85bfcd 100644 --- a/extra/gjs/PKGBUILD +++ b/extra/gjs/PKGBUILD @@ -1,26 +1,30 @@ -# $Id: PKGBUILD 169881 2012-10-30 22:25:52Z heftig $ +# $Id: PKGBUILD 183533 2013-04-22 15:40:22Z heftig $ # Maintainer: Ionut Biru <ibiru@archlinux.org> pkgname=gjs -pkgver=1.34.0 +pkgver=1.36.1 pkgrel=1 pkgdesc="Javascript Bindings for GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://live.gnome.org/Gjs" -license=('GPL') -depends=('cairo' 'dbus-glib' 'gobject-introspection' 'js') +license=(GPL) +depends=(cairo gobject-introspection 'js>=17.0.0') options=('!libtool') -source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('3d62c717a0522a36c6faa1eb021872255e3cd285a72786afe23b7cca2e3084cb') +source=(http://people.gnome.org/~walters/$pkgname-js17-$pkgver.tar.bz2) +sha256sums=('5826f74fcf20750538f74e2b0059f392eb139996b80b70ca217f5f7a0d117e27') build() { - cd "$srcdir/$pkgname-$pkgver" - sed -i 's|python|python2|' scripts/make-tests + cd $pkgname-$pkgver ./configure --prefix=/usr --disable-static make } +check() { + cd $pkgname-$pkgver + make check +} + package() { - cd "$srcdir/$pkgname-$pkgver" + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } |