summaryrefslogtreecommitdiff
path: root/community/v8/PKGBUILD
blob: 0aa79df2817a3bb4cf824e061679c5115bedbcc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# $Id: PKGBUILD 69009 2012-04-07 21:25:28Z kchen $
# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: tocer <tocer.deng@gmail.com>

pkgname=v8
pkgver=3.9.9
pkgrel=1
pkgdesc='A fast and modern javascript engine'
arch=('i686' 'x86_64' 'mips64el')
url='http://code.google.com/p/v8'
license=('BSD')
depends=('gcc-libs')
makedepends=('subversion' 'scons')

build() {
  _source="http://v8.googlecode.com/svn/tags/${pkgver}"
  svn checkout "$_source" "${srcdir}/v8-${pkgver}"

  cd "${srcdir}/${pkgname}-${pkgver}"

  [ "$CARCH" = 'i686' ]   && SCONS_ARCH=ia32
  [ "$CARCH" = 'x86_64' ] && SCONS_ARCH=x64

  scons mode=release library=shared arch=$SCONS_ARCH
  scons d8 arch=$SCONS_ARCH

  find include -type f \
    -exec install -Dm644 {} ${pkgdir}/usr/{} \;
  rm -rf ${pkgdir}/usr/include/.svn

  install -Dm755 d8 "${pkgdir}/usr/bin/d8"
  install -Dm755 libv8.so "${pkgdir}/usr/lib/libv8.so"

  install -d ${pkgdir}/usr/share/licenses/v8
  install -m644 LICENSE* ${pkgdir}/usr/share/licenses/v8
}