12 lines
374 B
Plaintext
12 lines
374 B
Plaintext
|
# nodejs binary
|
||
|
%__nodejs %{_bindir}/node
|
||
|
|
||
|
# nodejs library directory
|
||
|
%nodejs_sitelib %{_prefix}/lib/node_modules
|
||
|
|
||
|
# currently installed nodejs version
|
||
|
%nodejs_version %(%{__nodejs} -v | sed s/v//)
|
||
|
|
||
|
# symlink dependencies so `npm link` works
|
||
|
# this should be run in every module's %%install section
|
||
|
%nodejs_symlink_deps %{_rpmconfigdir}/nodejs_symlink_deps %{nodejs_sitelib}
|