PKGBUILDs/community/nodejs/PKGBUILD

90 lines
2.6 KiB
Bash
Raw Normal View History

2012-01-27 02:19:01 +00:00
# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: James Campos <james.r.campos@gmail.com>
# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
# Contributor: Dongsheng Cai <dongsheng at moodle dot com>
# Contributor: Masutu Subric <masutu.arch at googlemail dot com>
# Contributor: TIanyi Cui <tianyicui@gmail.com>
# Contributor: Jason Plum <max@warheads.net>
pkgname=nodejs
2012-02-03 02:48:49 +00:00
pkgver=0.6.10
2012-01-27 02:19:01 +00:00
pkgrel=1
2012-02-05 03:01:56 +00:00
plugrel=2
2012-01-27 02:19:01 +00:00
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64' 'arm')
2012-01-27 02:19:01 +00:00
url='http://nodejs.org/'
license=('MIT')
2012-02-05 05:33:38 +00:00
depends=('python2' 'isl')
2012-01-27 02:19:01 +00:00
checkdepends=('curl') # curl used for check()
optdepends=('openssl: TLS support')
options=('!emptydirs')
source=("http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz"
'nodejs-armv5t.patch')
2012-01-31 01:36:33 +00:00
md5sums=('c2d2aee123a141ba8431855f1d9c8200'
2012-01-27 02:19:01 +00:00
'27eb4bfa8da9707b6b326e47e99995de')
build() {
cd node-v${pkgver}
msg 'fixing for python2 name'
find -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 {} \;
find test -type f -exec sed -e "s|python |python2 |" -i {} \;
sed -i "s|cmd_R = 'python |cmd_R = 'python2 |" wscript
sed -i "s|python |python2 |" Makefile
find test -type f -exec sed -e 's/python/&2/' -i {} \;
sed -i "s/python/&2/" configure
export PYTHON=python2
2012-02-05 02:06:11 +00:00
# we're going to attept to make use of this example
# https://github.com/joyent/node/issues/2131#issuecomment-3208846
# https://gist.github.com/1574158
2012-02-05 05:07:16 +00:00
# pathing scons
sed -i "s/python/&2/" tools/scons/scons.py
2012-02-05 03:01:56 +00:00
msg 'Selecting pre-compile of v8'
2012-02-05 02:06:11 +00:00
# move up to v8
cd deps/v8
# run the scons script directly...
2012-01-27 02:19:01 +00:00
if [ "$CARCH" == "arm" ]; then
2012-02-05 03:01:56 +00:00
msg 'pre-compiling v8 for v5'
2012-02-05 02:06:11 +00:00
# we need to override the arch (last one will be used) because
# v8 thinks armv5te can use unaligned.. the kirkwood can't!
CCFLAGS="$CCFLAGS -march=armv5t" ;
export CCFLAGS ;
2012-02-05 03:33:47 +00:00
../../tools/scons/scons.py arch=arm armeabi=soft mode=release snapshot=off
2012-02-05 02:06:11 +00:00
fi
2012-02-05 03:33:47 +00:00
if [ "$CARCH" == "armv7h" ]; then
2012-02-05 03:01:56 +00:00
msg 'pre-compiling v8 for v7'
2012-02-05 05:07:16 +00:00
../../tools/scons/scons.py arch=arm armeabi=hard mode=release snapshot=off vfp3=on
2012-01-27 02:19:01 +00:00
fi
2012-02-05 02:06:11 +00:00
# go back to the node source directory
cd ../../
2012-01-27 02:19:01 +00:00
./configure \
--prefix=/usr
make
}
check() {
cd node-v${pkgver}
# test failures in 0.6 are known
make test || true
}
package() {
cd node-v${pkgver}
make DESTDIR=${pkgdir} install
# install docs as per user request
install -d ${pkgdir}/usr/share/doc/nodejs
cp -r doc/api/api/* \
${pkgdir}/usr/share/doc/nodejs
install -D -m644 LICENSE \
${pkgdir}/usr/share/licenses/nodejs/LICENSE
}
# vim:set ts=2 sw=2 et: