Created
September 30, 2013 14:54
-
-
Save kastermester/6764991 to your computer and use it in GitHub Desktop.
How to create nodeJS .deb package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install python g++ make checkinstall | |
mkdir src && cd $_ | |
wget -N http://nodejs.org/dist/node-v0.10.18.tar.gz | |
tar xzvf node-v0.10.18.tar.gz && cd node-v0.10.18 | |
umask 0022 | |
./configure | |
make | |
checkinstall -D --umask 0022 --reset-uids --install=no --requires=libc6,libgcc1,libstdc++6,rlwrap [email protected] --pkgversion=0.10.18 --no-doc --pkgname node |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment