diff options
author | Ryunosuke SATO <tricknotes.rs@gmail.com> | 2013-01-14 11:59:37 +0900 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2013-01-20 17:57:19 -0500 |
commit | 359e3f57466e508ccfc3e30acfc2aee0c52df83c (patch) | |
tree | 1e4b5ad94e0962c0522e666589ecc32e671325a1 | |
parent | 4488f68adfe7d593f538aa1791ba35c6ace87a7e (diff) | |
download | jquery-359e3f57466e508ccfc3e30acfc2aee0c52df83c.tar.gz jquery-359e3f57466e508ccfc3e30acfc2aee0c52df83c.zip |
Fix requirements and dependencies in README, close gh-1131.
-rw-r--r-- | README.md | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -14,25 +14,23 @@ In the spirit of open source software development, jQuery always encourages comm What you need to build your own jQuery -------------------------------------- -In order to build jQuery, you need to have GNU make 3.8 or later, Node.js/npm latest, and git 1.7 or later. +In order to build jQuery, you need to have Node.js/npm latest and git 1.7 or later. (Earlier versions might work OK, but are not tested.) Windows users have two options: -1. Install [msysgit](https://code.google.com/p/msysgit/) (Full installer for official Git), - [GNU make for Windows](http://gnuwin32.sourceforge.net/packages/make.htm), and a - [binary version of Node.js](http://node-js.prcn.co.cc/). Make sure all three packages are installed to the same +1. Install [msysgit](https://code.google.com/p/msysgit/) (Full installer for official Git) and a + [binary version of Node.js](http://nodejs.org). Make sure all two packages are installed to the same location (by default, this is C:\Program Files\Git). -2. Install [Cygwin](http://cygwin.com/) (make sure you install the git, make, and which packages), then either follow - the [Node.js build instructions](https://github.com/ry/node/wiki/Building-node.js-on-Cygwin-%28Windows%29) or install - the [binary version of Node.js](http://node-js.prcn.co.cc/). +2. Install [Cygwin](http://cygwin.com/) (make sure you install the git and which packages), and + a [binary version of Node.js](http://nodejs.org/). Mac OS users should install Xcode (comes on your Mac OS install DVD, or downloadable from [Apple's Xcode site](http://developer.apple.com/technologies/xcode.html)) and [Homebrew](http://mxcl.github.com/homebrew/). Once Homebrew is installed, run `brew install git` to install git, and `brew install node` to install Node.js. -Linux/BSD users should use their appropriate package managers to install make, git, and node, or build from source +Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source if you swing that way. Easy-peasy. |