This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
lsts_glued/rules/nodejs/default.bash

39 lines
430 B
Bash
Raw Normal View History

2013-09-14 23:49:40 +01:00
version=\
(
'0.10.18'
)
url=\
(
2013-09-14 23:51:24 +01:00
"http://nodejs.org/dist/v$version/node-v$version.tar.gz"
2013-09-14 23:49:40 +01:00
)
md5=\
(
'8b905b6013b82fb7076b02a6c881f9a6'
)
maintainer=\
(
'Jose Pinto <zepinto@fe.up.pt>'
)
configure()
{
"../node-v$version/configure" --without-snapshot --prefix="${cfg_dir_rootfs}"
}
build()
{
cd "../node-v$version"
$cmd_make
}
target_install()
{
cd "../node-v$version"
$cmd_make install
}