mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
22 lines
400 B
Plaintext
22 lines
400 B
Plaintext
# description : JavaScript runtime built on Chrome's V8 JavaScript engine
|
|
# depends : c-ares icu python3 libuv zlib
|
|
|
|
name=nodejs
|
|
version=21.5.0
|
|
release=1
|
|
source="https://nodejs.org/dist/v$version/node-v$version.tar.xz"
|
|
|
|
build() {
|
|
cd node-v$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--shared-cares \
|
|
--shared-zlib \
|
|
--shared-libuv \
|
|
--with-intl=system-icu
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|