diff options
Diffstat (limited to 'community/v8/PKGBUILD')
-rw-r--r-- | community/v8/PKGBUILD | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/community/v8/PKGBUILD b/community/v8/PKGBUILD index 3c8fffb2c..9dcf911b9 100644 --- a/community/v8/PKGBUILD +++ b/community/v8/PKGBUILD @@ -1,41 +1,51 @@ -# $Id: PKGBUILD 75499 2012-08-26 09:56:04Z jelle $ +# $Id: PKGBUILD 78786 2012-10-24 19:28:22Z bpiotrowski $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: tocer <tocer.deng@gmail.com> pkgname=v8 -pkgver=3.13.0 +pkgver=3.14.0 pkgrel=1 -pkgdesc='A fast and modern javascript engine' +pkgdesc='Fast and modern javascript engine' arch=('i686' 'x86_64') url='http://code.google.com/p/v8' license=('BSD') -depends=('gcc-libs') -makedepends=('scons') -source=("v8.tar.gz::https://github.com/v8/v8/tarball/$pkgver") -md5sums=('55878a54d5dc5674a5ade223d55965f6') +depends=('gcc-libs' 'readline') +makedepends=('subversion' 'python2') +source=($pkgname-$pkgver.tar.gz::https://github.com/v8/v8/tarball/$pkgver) +md5sums=('bcfec8d90a1d72d9962f3effa15e56c0') -build() { +[[ "$CARCH" = 'i686' ]] && ARCH=ia32 +[[ "$CARCH" = 'x86_64' ]] && ARCH=x64 +build() { cd $srcdir/$pkgname-$pkgname-* - [ "$CARCH" = 'i686' ] && SCONS_ARCH=ia32 - [ "$CARCH" = 'x86_64' ] && SCONS_ARCH=x64 + # Fetch gyp + make dependencies - scons mode=release library=shared arch=$SCONS_ARCH - scons d8 arch=$SCONS_ARCH + # The world isn't ready for python2 + export PYTHON=python2 + find build/ test/ tools/ src/ -type f \ + -exec sed -e 's_^#!/usr/bin/env python$_&2_' \ + -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \ + -e 's_^#!/usr/bin/python$_&2_' \ + -e "s_'python'_'python2'_" -i {} \; + sed -i 's/python /python2 /' Makefile + make $ARCH.release library=shared console=readline } package() { - cd ${srcdir}/${pkgname}-$pkgname-* + cd $srcdir/$pkgname-$pkgname-* - install -Dm755 d8 "${pkgdir}/usr/bin/d8" - install -Dm755 libv8.so "${pkgdir}/usr/lib/libv8.so" + install -Dm755 out/$ARCH.release/d8 $pkgdir/usr/bin/d8 + install -Dm755 out/$ARCH.release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so - # Include headers install -d $pkgdir/usr/include - install -Dm755 include/*.h $pkgdir/usr/include + install -Dm644 include/*.h $pkgdir/usr/include - install -d ${pkgdir}/usr/share/licenses/v8 + install -d $pkgdir/usr/share/licenses/v8 install -m644 LICENSE* ${pkgdir}/usr/share/licenses/v8 } + +# vim:set ts=2 sw=2 et: |