summaryrefslogtreecommitdiff
path: root/community/v8
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-01-13 14:21:34 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-01-13 14:21:34 -0300
commit4a47b2a0e019de14d474e353a601ca6bf47e90e5 (patch)
tree69e20048be17aa12e6342ebcafb0cf9cdbfee32d /community/v8
parent149750d28420a7b59fab5501ab9aaca095f6fa46 (diff)
parentb5f690637837ff269bf5d248ee2dc37ea5236ca8 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/packagekit/PKGBUILD community/bird/PKGBUILD community/camlp5/PKGBUILD community/exim/PKGBUILD community/ibus-table-extraphrase/PKGBUILD community/mingw32-gcc-base/PKGBUILD community/mingw32-gcc/PKGBUILD community/torcs/PKGBUILD core/db/PKGBUILD core/iproute2/PKGBUILD core/libsasl/PKGBUILD core/openldap/PKGBUILD core/pam/PKGBUILD core/util-linux/PKGBUILD extra/cyrus-sasl/PKGBUILD extra/ffmpeg/PKGBUILD extra/kdelibs/PKGBUILD extra/libreoffice/PKGBUILD extra/php/PKGBUILD extra/postfix/PKGBUILD extra/python-lxml/PKGBUILD extra/rdesktop/PKGBUILD extra/redland/PKGBUILD extra/subversion/PKGBUILD extra/tidyhtml/PKGBUILD extra/transmission/PKGBUILD extra/windowmaker/PKGBUILD kde-unstable/calligra/PKGBUILD multilib/lib32-libdrm/PKGBUILD multilib/lib32-libdrm/no-pthread-stubs.patch multilib/lib32-openssl/PKGBUILD
Diffstat (limited to 'community/v8')
-rw-r--r--community/v8/PKGBUILD22
1 files changed, 14 insertions, 8 deletions
diff --git a/community/v8/PKGBUILD b/community/v8/PKGBUILD
index 84d97951e..2d9812429 100644
--- a/community/v8/PKGBUILD
+++ b/community/v8/PKGBUILD
@@ -1,19 +1,20 @@
-# $Id: PKGBUILD 56586 2011-10-09 03:29:08Z tdziedzic $
+# $Id: PKGBUILD 61849 2012-01-09 06:27:02Z tdziedzic $
# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: tocer <tocer.deng@gmail.com>
pkgname=v8
-pkgver=3.6.5.1
+pkgver=3.6.6.14
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/$pkgname-$pkgver"
+ _source="http://v8.googlecode.com/svn/tags/${pkgver}"
+ svn checkout "$_source" "${srcdir}/v8-${pkgver}"
cd "${srcdir}/${pkgname}-${pkgver}"
@@ -24,9 +25,14 @@ build() {
scons d8 arch=$SCONS_ARCH
find include -type f \
- -exec install -Dm644 {} $pkgdir/usr/{} \;
- rm -rf $pkgdir/usr/include/.svn
+ -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 -Dm755 d8 "${pkgdir}/usr/bin/d8"
+ install -Dm755 libv8.so "${pkgdir}/usr/lib/libv8.so"
+
+ # install license
+ install -d ${pkgdir}/usr/share/licenses/v8
+ install -m644 LICENSE* \
+ ${pkgdir}/usr/share/licenses/v8
}