You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
359 B
10 lines
359 B
#!/bin/sh |
|
|
|
version=$(rpm -q --specfile --qf='%{version}\n' nodejs.spec | head -n1) |
|
rm -f node-v${version}.tar.gz |
|
wget http://nodejs.org/dist/v${version}/node-v${version}.tar.gz |
|
tar -zxf node-v${version}.tar.gz |
|
rm -rf node-v${version}/deps/openssl |
|
tar -zcf node-v${version}-stripped.tar.gz node-v${version} |
|
|
|
fedpkg new-sources node-v${version}-stripped.tar.gz
|
|
|