mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
nodejs: Update to latest 0.4x series release 0.4.12
Rename patch and update checksums accordingly. Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
committed by
Koen Kooi
parent
66f3e4d7ca
commit
86c42ab05a
@@ -0,0 +1,37 @@
|
||||
DESCRIPTION = "nodeJS Evented I/O for V8 JavaScript"
|
||||
HOMEPAGE = "http://nodejs.org"
|
||||
LICENSE = "MIT && zlib"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=d6237f3a840aef5b7880fb4e49eecfe5"
|
||||
|
||||
DEPENDS = "openssl"
|
||||
|
||||
SRC_URI = " \
|
||||
http://nodejs.org/dist/node-v${PV}.tar.gz \
|
||||
file://libev-cross-cc_${PV}.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "a6375eaa43db5356bf443e25b828ae16"
|
||||
SRC_URI[sha256sum] = "c01af05b933ad4d2ca39f63cac057f54f032a4d83cff8711e42650ccee24fce4"
|
||||
|
||||
S = "${WORKDIR}/node-v${PV}"
|
||||
|
||||
# v8 errors out if you have set CCACHE
|
||||
CCACHE = ""
|
||||
|
||||
do_configure () {
|
||||
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
|
||||
}
|
||||
|
||||
do_compile () {
|
||||
make
|
||||
}
|
||||
|
||||
do_install () {
|
||||
DESTDIR=${D} oe_runmake install
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "curl python-shell python-datetime python-subprocess python-crypt python-textutils python-netclient "
|
||||
|
||||
FILES_${PN} += "${libdir}/node/wafadmin"
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user