# $Id: PKGBUILD 78786 2012-10-24 19:28:22Z bpiotrowski $ # Maintainer: Kaiting Chen # Contributor: tocer pkgname=v8 pkgver=3.14.0 pkgrel=1 pkgdesc='Fast and modern javascript engine' arch=('i686' 'x86_64') url='http://code.google.com/p/v8' license=('BSD') depends=('gcc-libs' 'readline') makedepends=('subversion' 'python2') source=($pkgname-$pkgver.tar.gz::https://github.com/v8/v8/tarball/$pkgver) md5sums=('bcfec8d90a1d72d9962f3effa15e56c0') [[ "$CARCH" = 'i686' ]] && ARCH=ia32 [[ "$CARCH" = 'x86_64' ]] && ARCH=x64 build() { cd $srcdir/$pkgname-$pkgname-* # Fetch gyp make dependencies # 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-* install -Dm755 out/$ARCH.release/d8 $pkgdir/usr/bin/d8 install -Dm755 out/$ARCH.release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so install -d $pkgdir/usr/include install -Dm644 include/*.h $pkgdir/usr/include install -d $pkgdir/usr/share/licenses/v8 install -m644 LICENSE* ${pkgdir}/usr/share/licenses/v8 } # vim:set ts=2 sw=2 et: