diff options
author | root <root@rshg054.dnsready.net> | 2012-09-08 00:04:17 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-08 00:04:17 +0000 |
commit | c85b504e8916411d424cd3fc654ff879237d529e (patch) | |
tree | 3107088a155cd162c6fa050327d5f9f6a9c410d9 /gnome-unstable/gjs | |
parent | ed51a8c1611ffa602f5f9628c858f6edbc218fc8 (diff) |
Sat Sep 8 00:04:17 UTC 2012
Diffstat (limited to 'gnome-unstable/gjs')
-rw-r--r-- | gnome-unstable/gjs/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnome-unstable/gjs/PKGBUILD b/gnome-unstable/gjs/PKGBUILD new file mode 100644 index 000000000..83ef5bd13 --- /dev/null +++ b/gnome-unstable/gjs/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 166357 2012-09-06 21:31:23Z jgc $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> + +pkgname=gjs +pkgver=1.33.10 +pkgrel=1 +pkgdesc="Javascript Bindings for GNOME" +arch=('i686' 'x86_64') +url="http://live.gnome.org/Gjs" +license=('GPL') +depends=('cairo' 'dbus-glib' 'gobject-introspection' 'js') +options=('!libtool') +source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) +sha256sums=('b856e329eac8208e6618d7e5a7176828ffcc8bb8bb72cf13c34d66524d0ecafd') + +build() { + cd "$srcdir/$pkgname-$pkgver" + sed -i 's|python|python2|' scripts/make-tests + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |