PKGBUILDs/community/v8/PKGBUILD
2014-11-23 20:49:05 +00:00

78 lines
2.8 KiB
Bash

# $Id$
# Maintainer: Anatol Pomozov <anatol.pomozov@gmail.com>
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: tocer <tocer.deng@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - set ARM arch, gyp config flags
pkgname=v8
# use http://omahaproxy.appspot.com/ to find stable v8 version
pkgver=3.29.88.17
pkgrel=1
pkgdesc='Fast and modern Javascript engine'
arch=(i686 x86_64)
url='http://code.google.com/p/v8'
license=(BSD)
depends=(readline icu)
makedepends=(python2 ninja)
# unfortunately https://github.com/$pkgname/$pkgname does not contain all tags
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver-lite.tar.bz2
v8.pc)
sha256sums=('2a056ba159defe5852ad03aa572ce91ddcef799df2fc281f316b5c015c830007'
'2b054309df9af9fb2e3e14527e88360b44745649b4866e592fb357ac90935f5d')
[[ "$CARCH" = 'i686' ]] && ARCH=ia32
[[ "$CARCH" = 'x86_64' ]] && ARCH=x64
[[ "$CARCH" = 'arm' ]] && ARCH=arm && CONFIG="-Darmv7=0 -Darm_neon=0 -Darm_float_abi=soft -Darm_thumb=" && CXXFLAGS="$CXXFLAGS -march=armv5t -mno-unaligned-access"
[[ "$CARCH" = 'armv6h' ]] && ARCH=arm && CONFIG="-Darmv7=0 -Darm_neon=0 -Darm_fpu=vfp -Darm_float_abi=hard -Darm_thumb="
[[ "$CARCH" = 'armv7h' ]] && ARCH=arm && CONFIG="-Darmv7=1 -Darm_neon=0 -Darm_fpu=vfpv3-d16 -Darm_float_abi=hard -Darm_thumb="
prepare() {
cd v8-$pkgver
find build/ test/ tools/ src/ -type f -exec \
sed -e 's_^#!/usr/bin/env python$_&2_' \
-e 's_^#!/usr/bin/python$_&2_' \
-e "s_'python'_'python2'_" -i {} \;
sed 's/\bpython\b/python2/' -i Makefile build/gyp/gyp
sed "s/@VERSION@/$pkgver/g" -i "$srcdir/v8.pc"
}
build() {
cd v8-$pkgver
build/gyp_v8 $CONFIG -Dv8_enable_i18n_support=1 -Duse_system_icu=1 -Dconsole=readline -Dcomponent=shared_library -Dv8_target_arch=$ARCH -f ninja
ninja -C out/Release v8 d8 # or target 'all' if you need tests
}
check() {
cd v8-$pkgver
# the test fails https://code.google.com/p/v8/issues/detail?id=2899
rm test/intl/collator/default-locale.js
tools/run-tests.py --no-presubmit --outdir=out --buildbot --arch=$V8_ARCH --mode=Release # --progress=dots
}
package() {
cd v8-$pkgver
install -Dm755 out/Release/d8 "$pkgdir"/usr/bin/d8
install -Dm755 out/Release/lib/libv8.so "$pkgdir"/usr/lib/libv8.so
# V8 has several header files and ideally if it had its own folder in /usr/include
# But doing it here will break all users. Ideally if they use provided pkgconfig file.
install -d "$pkgdir"/usr/include
install -Dm644 include/*.h "$pkgdir"/usr/include
install -d "$pkgdir"/usr/lib/pkgconfig
install -m644 "$srcdir/v8.pc" "$pkgdir"/usr/lib/pkgconfig
install -d "$pkgdir"/usr/share/licenses/v8
install -m644 LICENSE* "$pkgdir"/usr/share/licenses/v8
}