PKGBUILDs/community/nodejs/PKGBUILD

125 lines
3.5 KiB
Bash
Raw Normal View History

2014-09-28 13:07:04 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Thomas Dziedzic < gostrc at gmail >
2012-01-27 02:19:01 +00:00
# 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>
2013-01-11 13:33:47 +00:00
# Contributor: Jason Plum <jplum@archlinuxarm.org>
2012-01-27 02:19:01 +00:00
pkgname=nodejs
2015-10-13 12:11:28 +00:00
pkgver=4.2.0
pkgrel=2
2012-01-27 02:19:01 +00:00
pkgdesc='Evented I/O for V8 javascript'
2015-09-17 00:01:46 +00:00
arch=('i686' 'x86_64')
2012-01-27 02:19:01 +00:00
url='http://nodejs.org/'
license=('MIT')
2014-05-06 08:33:13 +00:00
provides=('nodejs-node-gyp')
2015-10-13 12:11:28 +00:00
depends=('openssl' 'zlib' 'icu' 'libuv' 'http-parser') # 'v8')
2015-05-08 12:43:59 +00:00
makedepends=('python2' 'procps-ng')
optdepends=('npm: nodejs package manager')
2014-07-19 16:41:42 +00:00
source=("http://nodejs.org/dist/v$pkgver/node-v$pkgver.tar.gz"
2015-09-17 00:01:46 +00:00
'0001-arm-fixes.patch')
2015-10-13 12:11:28 +00:00
sha256sums=('94ea40efeb598fed6e1a78990b698da73275c49876ec551dc36e11513c99fb6b'
2015-09-17 00:01:46 +00:00
'13f14499c0a83d282ac07d1116a2d9196b4ae37dbd6914865f0b6549158789c4')
2012-01-27 02:19:01 +00:00
2013-02-20 15:12:21 +00:00
set_flags_for_arm() {
if [ "$CARCH" == "arm" ]; then
# CXXFLAGS is here to bash it over the head. It has a bad habit.
2015-09-17 01:10:51 +00:00
CONFIG="--with-arm-float-abi=soft"
2013-02-20 15:12:21 +00:00
CXXFLAGS="$CXXFLAGS -march=armv5t -mno-unaligned-access" ;
2015-04-04 04:39:00 +00:00
GYPFLAGS="-Darm_thumb -Darm_float_abi=soft -Darm_version=5 -Darm_fpu= -Darm_test_noprobe=on"
2013-02-20 15:12:21 +00:00
fi
if [ "$CARCH" == "armv6h" ]; then
2015-09-17 01:10:51 +00:00
CONFIG="--with-arm-float-abi=hard"
2015-04-04 04:39:00 +00:00
GYPFLAGS="-Darm_thumb -Darm_float_abi=hard -Darm_version=6 -Darm_fpu=vfpv2"
2013-02-20 15:12:21 +00:00
fi
if [ "$CARCH" == "armv7h" ]; then
2015-09-17 01:10:51 +00:00
CONFIG="--with-arm-float-abi=hard"
2015-04-04 04:39:00 +00:00
GYPFLAGS="-Darm_thumb -Darm_float_abi=hard -Darm_version=7 -Darm_fpu=vfpv3-d16"
2013-02-20 15:12:21 +00:00
fi
export CXXFLAGS
export GYPFLAGS
}
2013-05-15 14:33:50 +00:00
prepare() {
cd node-v$pkgver
2012-01-27 02:19:01 +00:00
2015-09-17 00:01:46 +00:00
patch -p1 -i ../0001-arm-fixes.patch
2015-04-04 04:39:00 +00:00
2015-09-16 18:41:44 +00:00
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_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
-e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
-e "s_'python'_'python2'_" -i {} \;
find test/ -type f -exec sed 's_python _python2 _' -i {} \;
2013-05-15 14:33:50 +00:00
}
2015-04-04 04:39:00 +00:00
2013-05-15 14:33:50 +00:00
build() {
cd node-v$pkgver
2012-01-27 02:19:01 +00:00
export PYTHON=python2
2013-02-20 15:12:21 +00:00
set_flags_for_arm
2014-08-01 12:55:32 +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-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 02:06:11 +00:00
2012-01-27 02:19:01 +00:00
./configure \
--prefix=/usr \
2015-05-08 12:43:59 +00:00
--with-intl=system-icu \
--without-npm \
--without-snapshot \
2015-02-15 19:15:29 +00:00
--shared-openssl \
2015-09-17 01:10:51 +00:00
--shared-zlib \
2015-10-13 12:11:28 +00:00
--shared-libuv \
--shared-http-parser \
2015-09-17 01:10:51 +00:00
${CONFIG}
2013-01-24 23:07:08 +00:00
# --shared-v8 \
# --shared-v8-libpath=/usr/lib \
# --shared-v8-includes=/usr/include
2015-04-04 04:39:00 +00:00
[ "$CARCH" == "arm" ] && sed -i 's/vfpv3//' config.gypi
[ "$CARCH" == "armv6h" ] && sed -i 's/vfpv3/vfp/' config.gypi
2012-01-27 02:19:01 +00:00
2015-04-04 04:39:00 +00:00
make
2012-01-27 02:19:01 +00:00
}
check() {
cd node-v${pkgver}
2014-06-10 07:12:04 +00:00
make test || warning "Tests failed"
2012-01-27 02:19:01 +00:00
}
package() {
cd node-v${pkgver}
2013-02-20 15:12:21 +00:00
# suppress re-compile(with out customized flags) by 'make install'.
set_flags_for_arm
2012-01-27 02:19:01 +00:00
make DESTDIR=${pkgdir} install
# install docs as per user request
install -d ${pkgdir}/usr/share/doc/nodejs
2013-06-02 16:47:07 +00:00
cp -r doc/api/{*.html,assets} \
2012-01-27 02:19:01 +00:00
${pkgdir}/usr/share/doc/nodejs
install -D -m644 LICENSE \
${pkgdir}/usr/share/licenses/nodejs/LICENSE
}
# vim:set ts=2 sw=2 et: