mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-11 06:10:06 +02:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
91 lines
2.2 KiB
Bash
91 lines
2.2 KiB
Bash
SUMMARY="A JavaScript runtime built on Chrome's V8 Engine"
|
|
DESCRIPTION="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. \
|
|
As an asynchronous event driven JavaScript runtime, Node is designed to build scalable \
|
|
network applications. In the following \"hello world\" example, many connections can be \
|
|
handled concurrently. Upon each connection the callback is fired, but if there is no work \
|
|
to be done, Node will sleep."
|
|
HOMEPAGE="https://nodejs.org/"
|
|
COPYRIGHT="2006-2019 The Node.js Foundation"
|
|
LICENSE="BSD (2-clause)"
|
|
REVISION="1"
|
|
SOURCE_URI="https://nodejs.org/dist/v$portVersion/node-v$portVersion.tar.xz"
|
|
SOURCE_DIR="node-v$portVersion"
|
|
CHECKSUM_SHA256="df5c5f0ebad4889f5dd24e565eaaa9cbe2ca3274f78af469d9a20cc36f60ba23"
|
|
PATCHES="nodejs-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="all !x86_gcc2 ?x86"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
nodejs12$secondaryArchSuffix = $portVersion
|
|
cmd:node = $portVersion compat >= 12
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
lib:libcares$secondaryArchSuffix
|
|
lib:libcrypto$secondaryArchSuffix
|
|
lib:libexecinfo$secondaryArchSuffix
|
|
lib:libnghttp2$secondaryArchSuffix
|
|
lib:libssl$secondaryArchSuffix
|
|
lib:libuv$secondaryArchSuffix
|
|
lib:libz$secondaryArchSuffix
|
|
"
|
|
REPLACES="nodejs"
|
|
|
|
PROVIDES_devel="
|
|
nodejs12${secondaryArchSuffix}_devel
|
|
"
|
|
REQUIRES_devel="
|
|
nodejs12$secondaryArchSuffix == $portVersion base
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
devel:libcares$secondaryArchSuffix
|
|
devel:libexecinfo$secondaryArchSuffix
|
|
devel:libnghttp2$secondaryArchSuffix
|
|
devel:libssl$secondaryArchSuffix >= 1.1
|
|
devel:libuv$secondaryArchSuffix
|
|
devel:libz$secondaryArchSuffix
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:find
|
|
cmd:gcc$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:ninja
|
|
cmd:python2
|
|
cmd:which
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./configure --with-intl=none --dest-os=haiku \
|
|
--shared-cares --shared-libuv --shared-nghttp2 --shared-openssl \
|
|
--shared-zlib \
|
|
--prefix=$prefix --without-npm
|
|
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
mkdir -p $(dirname $docDir $includeDir $manDir)
|
|
mv $prefix/include $includeDir
|
|
mv $prefix/share/man $manDir
|
|
mv $prefix/share/doc $docDir
|
|
|
|
packageEntries devel \
|
|
$developDir
|
|
|
|
strip $prefix/bin/node
|
|
rm -rf $prefix/share
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test-only
|
|
}
|