add the tarball stripping script

This commit is contained in:
T.C. Hollingsworth 2013-05-28 20:23:27 -07:00
parent 9e89193903
commit 07d9fe983d

7
nodejs-tarball.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
version=$(rpm -q --specfile --qf='%{version}\n' nodejs.spec | head -n1)
#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}