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-10-25 21:36:44 +00:00
|
|
|
pkgver=0.8.14
|
2012-11-22 06:26:52 +00:00
|
|
|
pkgrel=1.1
|
2012-01-27 02:19:01 +00:00
|
|
|
pkgdesc='Evented I/O for V8 javascript'
|
2012-01-27 02:23:27 +00:00
|
|
|
arch=('i686' 'x86_64' 'arm')
|
2012-01-27 02:19:01 +00:00
|
|
|
url='http://nodejs.org/'
|
|
|
|
license=('MIT')
|
2012-11-21 17:48:04 +00:00
|
|
|
depends=('python2')
|
2012-01-27 02:19:01 +00:00
|
|
|
checkdepends=('curl') # curl used for check()
|
|
|
|
optdepends=('openssl: TLS support')
|
|
|
|
options=('!emptydirs')
|
2012-06-26 01:16:17 +00:00
|
|
|
source=("http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz")
|
2012-10-25 21:36:44 +00:00
|
|
|
sha1sums=('47a1186004f6ce5e25a8555429d72b15519bc7f1')
|
2012-01-27 02:19:01 +00:00
|
|
|
|
|
|
|
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|python |python2 |" Makefile
|
|
|
|
|
|
|
|
export PYTHON=python2
|
2012-08-07 02:07:49 +00:00
|
|
|
|
|
|
|
if [ "$CARCH" == "arm" ]; then
|
2012-11-21 17:48:04 +00:00
|
|
|
# CXXFLAGS is here to bash it over the head. It has a bad habit.
|
2012-08-07 02:07:49 +00:00
|
|
|
EABI=soft
|
2012-11-21 17:48:04 +00:00
|
|
|
CXXFLAGS="$CXXFLAGS -march=armv5t -mno-unaligned-access" ;
|
|
|
|
GYPFLAGS="-Darmeabi=soft -Dv8_can_use_vfp_instructions=false -Dv8_can_use_unaligned_accesses=false -Darmv7=0"
|
|
|
|
VFP3=off
|
|
|
|
VFP2=off
|
2012-08-07 02:07:49 +00:00
|
|
|
fi
|
2012-11-21 17:48:04 +00:00
|
|
|
if [ "$CARCH" == "armv6h" ]; then
|
2012-08-07 02:07:49 +00:00
|
|
|
EABI=hard
|
2012-11-21 17:48:04 +00:00
|
|
|
GYPFLAGS="-Darmeabi=hard -Dv8_use_arm_eabi_hardfloat=true -Dv8_can_use_vfp3_instructions=false -Dv8_can_use_vfp2_instructions=true -Darm7=0 -Darm_vfp=vfp"
|
|
|
|
VFP3=off
|
|
|
|
VFP2=on
|
2012-08-07 02:07:49 +00:00
|
|
|
fi
|
2012-11-21 17:48:04 +00:00
|
|
|
if [ "$CARCH" == "armv7h" ]; then
|
|
|
|
EABI=hard
|
|
|
|
GYPFLAGS="-Darmeabi=hard -Dv8_use_arm_eabi_hardfloat=true -Dv8_can_use_vfp3_instructions=true -Dv8_can_use_vfp2_instructions=true -Darm7=1"
|
|
|
|
VFP3=on
|
|
|
|
VFP2=on
|
|
|
|
fi
|
|
|
|
export CXXFLAGS
|
|
|
|
export GYPFLAGS
|
2012-08-07 02:07:49 +00:00
|
|
|
|
2012-11-21 17:48:04 +00:00
|
|
|
# short-cutting python=python2 for GYP, as it will only be used here.
|
|
|
|
export PYTHON=python2
|
|
|
|
if [ ! -f "${srcdir}/python" ]; then
|
|
|
|
ln -s `which python2` ${srcdir}/python ;
|
|
|
|
fi
|
|
|
|
PATH="${srcdir}:$PATH";
|
|
|
|
export PATH ;
|
2012-08-07 02:07:49 +00:00
|
|
|
|
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
|
2012-02-05 04:34:24 +00:00
|
|
|
# https://gist.github.com/1574158
|
2012-02-05 02:06:11 +00:00
|
|
|
|
2012-01-27 02:19:01 +00:00
|
|
|
./configure \
|
2012-02-06 01:32:05 +00:00
|
|
|
--prefix=/usr \
|
2012-08-07 02:07:49 +00:00
|
|
|
--without-snapshot \
|
|
|
|
--with-arm-float-abi=$EABI
|
2012-11-21 17:48:04 +00:00
|
|
|
# --shared-openssl \
|
|
|
|
# --shared-v8 \
|
|
|
|
# --shared-v8-libpath=/usr/lib \
|
|
|
|
# --shared-v8-includes=/usr/include \
|
|
|
|
|
2012-01-27 02:19:01 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd node-v${pkgver}
|
|
|
|
|
|
|
|
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
|
2012-06-07 12:48:06 +00:00
|
|
|
cp -r doc/api/* \
|
2012-01-27 02:19:01 +00:00
|
|
|
${pkgdir}/usr/share/doc/nodejs
|
|
|
|
|
2012-07-17 13:39:31 +00:00
|
|
|
# compress man pages
|
|
|
|
find $pkgdir/usr/lib/node_modules/npm/man -type f | xargs gzip -9
|
|
|
|
|
2012-01-27 02:19:01 +00:00
|
|
|
install -D -m644 LICENSE \
|
|
|
|
${pkgdir}/usr/share/licenses/nodejs/LICENSE
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|