mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 19:44:47 +00:00
21 lines
569 B
Plaintext
21 lines
569 B
Plaintext
# description : JavaScript runtime built on Chrome's V8 JavaScript engine
|
|
# depends : c-ares icu openssl python2
|
|
|
|
name=nodejs
|
|
version=12.6.0
|
|
release=1
|
|
source=(https://nodejs.org/dist/v$version/node-v$version.tar.xz)
|
|
md5sum=(ca57ecf9abaa84ef44727673e585b9e5)
|
|
|
|
build() {
|
|
cd node-v$version
|
|
./configure --prefix=/usr \
|
|
--shared-cares \
|
|
--shared-openssl \
|
|
--shared-zlib \
|
|
--with-intl=system-icu
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/doc
|
|
}
|