diff options
author | root <root@rshg054.dnsready.net> | 2011-08-31 23:14:52 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-31 23:14:52 +0000 |
commit | 31f40feaa17912cf0ebfa72dd9368264633b3830 (patch) | |
tree | 28b258545d8ddf3acab854d97fc315f4d88f0e29 /gnome-unstable/gjs | |
parent | b82f11fd76e83d60504649838e60a235b394160f (diff) |
Wed Aug 31 23:14:52 UTC 2011
Diffstat (limited to 'gnome-unstable/gjs')
-rw-r--r-- | gnome-unstable/gjs/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnome-unstable/gjs/PKGBUILD b/gnome-unstable/gjs/PKGBUILD new file mode 100644 index 000000000..a891878ad --- /dev/null +++ b/gnome-unstable/gjs/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 136610 2011-08-30 18:10:26Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +pkgname=gjs +pkgver=1.29.17 +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}/1.29/${pkgname}-${pkgver}.tar.xz) +sha256sums=('427d3f7feb28303e05fc3d494318affc280c0087a26f7ffa2989ea86b68bd625') + +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 +} |