blob: 77ed388d35d8d70bd519cd213916f2bc11065617 (
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
57
58
59
60
61
62
63
64
|
DESCRIPTION = "nodeJS Evented I/O for V8 JavaScript"
HOMEPAGE = "http://nodejs.org"
LICENSE = "MIT & BSD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=914812f2875eef849b5c509cc25dcb4f"
DEPENDS = "openssl"
SRC_URI = "http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz \
file://fix-hardfloat-detection.patch"
SRC_URI[md5sum] = "fcf8e0f2981f9dd66606a2162a2df55d"
SRC_URI[sha256sum] = "b7bf4cf143ddf46ba5e975761b98a38dd3d72b176fd5d4bb2f9c9e7bbe6c4b15"
S = "${WORKDIR}/node-v${PV}"
# v8 errors out if you have set CCACHE
CCACHE = ""
do_configure_virtclass-native () {
sed -i -e s:\'/usr/lib:\'${STAGING_LIBDIR}:g wscript
sed -i -e s:\'/usr/local/lib:\'${STAGING_LIBDIR}:g wscript
./configure --prefix=${prefix} --without-snapshot
}
# Node is way too cool to use proper autotools, so we install two wrappers to forcefully inject proper arch cflags to workaround waf+scons
do_configure () {
echo '#!/bin/sh' > ${WORKDIR}/gcc
echo '${CC} $@' >> ${WORKDIR}/gcc
echo '#!/bin/sh' > ${WORKDIR}/g++
echo '${CXX} $@'>> ${WORKDIR}/g++
chmod +x ${WORKDIR}/gcc ${WORKDIR}/g++
sed -i -e s:\'/usr/lib:\'${STAGING_LIBDIR}:g wscript
sed -i -e s:\'/usr/local/lib:\'${STAGING_LIBDIR}:g wscript
export PATH=${WORKDIR}:${PATH}
export CC=gcc
export CXX=g++
./configure --prefix=${prefix} --without-snapshot
}
do_compile_virtclass-native () {
make BUILDTYPE=Release
}
do_compile () {
export PATH=${WORKDIR}:${PATH}
export CC=gcc
export CXX=g++
make BUILDTYPE=Release
}
do_install () {
DESTDIR=${D} oe_runmake install
}
RDEPENDS_${PN} = "curl python-shell python-datetime python-subprocess python-crypt python-textutils python-netclient "
RDEPENDS_${PN}_virtclass-native = "curl-native python-native"
FILES_${PN} += "${libdir}/node/wafadmin ${libdir}/node_modules"
BBCLASSEXTEND = "native"
|