diff options
author | user <user@bergwerk> | 2011-06-19 23:42:50 +0000 |
---|---|---|
committer | user <user@bergwerk> | 2011-06-19 23:45:37 +0000 |
commit | 27b2240d1c4fef02f06cea6c426283712fc5f13b (patch) | |
tree | 7f5f9aef72fef7e5ff00ebf3e7cc5ac778cb9f62 | |
parent | 65259d0c22f3b87fc3ca5f6b584d3437d0b14a95 (diff) |
node: install curl
-rw-r--r-- | node/Makefile | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/node/Makefile b/node/Makefile index 6428ff0f..20e15c70 100644 --- a/node/Makefile +++ b/node/Makefile @@ -1,8 +1,24 @@ -.PHONY: all -all: node-v0.4.8 - cd $< && ./configure && make && make install +.PHONY: all build install -node-%: +all: + @echo "You are made of stupid!"; exit 23 + +build: node node/build/default/node + cd node && ./configure && make + +install: build + cd node && make install + +node: node-git + ln -vsnf $< $@ + +node-git: + git clone https://github.com/joyent/node node-git + +node-%: /usr/bin/curl curl http://nodejs.org/dist/$@.tar.gz | tar zx + +/usr/bin/curl: + apt-get install --yes curl |