blob: 7a2b1d7ec1030e977cedccb364859fb4f3d375ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
DESCRIPTION = "nodeJS Evented I/O for V8 JavaScript"
HOMEPAGE = "http://nodejs.org"
LICENSE = "MIT & BSD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=95a589a3257ab7dfe37d8a8379e3c72d"
DEPENDS = "openssl"
# use newer npm version that supports caret (^) versions
# https://github.com/npm/npm/issues/4849
SRCREV_npm = "v1.4.23"
SRC_URI = "http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz \
file://0001-gcc-has-a-builtin-define-to-denote-hard-abi-when-in-.patch \
git://github.com/npm/npm.git;destsuffix=npm;name=npm \
"
SRC_URI[md5sum] = "afb113584498d2248825650b94e590a9"
SRC_URI[sha256sum] = "30608f9dcd9ad122f7e8e6212f95969979e3dc35309d0c422a56486334a9369e"
S = "${WORKDIR}/node-v${PV}"
# v8 errors out if you have set CCACHE
CCACHE = ""
ARCHFLAGS_arm = "${@bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', '--with-arm-float-abi=hard', '--with-arm-float-abi=softfp', d)}"
ARCHFLAGS ?= ""
# Node is way too cool to use proper autotools, so we install two wrappers to forcefully inject proper arch cflags to workaround gypi
do_configure () {
export LD="${CXX}"
./configure --prefix=${prefix} --without-snapshot ${ARCHFLAGS}
}
do_compile () {
export LD="${CXX}"
make BUILDTYPE=Release
}
do_install () {
# backup original bundled npm
if [ ! -d deps/npm.orig ]; then
mv deps/npm deps/npm.orig
else
rm -rf deps/npm
fi
# install updated npm from git repo
cp -r ${WORKDIR}/npm deps/npm
oe_runmake install DESTDIR=${D}
}
RDEPENDS_${PN} = "curl python-shell python-datetime python-subprocess python-crypt python-textutils python-netclient "
RDEPENDS_${PN}_class-native = ""
FILES_${PN} += "${libdir}/node/wafadmin ${libdir}/node_modules ${libdir}/dtrace"
BBCLASSEXTEND = "native"
|