blob: 466f9b6b880df59a93a447247c8b457fc50386c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name=nodejs
version=22.4.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
}
|