Files
ports/core/nodejs/spkgbuild
2019-07-07 12:48:18 +08:00

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
}