blob: 0815ca443cc0804b7946b4cf02ef3fcee4d1b1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name=nodejs
version=22.6.0
release=1
source="https://$name.org/dist/v$version/node-v$version.tar.xz"
build() {
./configure --prefix=/usr \
--shared-cares \
--shared-libuv \
--shared-openssl \
--shared-nghttp2 \
--shared-zlib \
--with-intl=system-icu
make
make install
}
|