diff options
| author | howthebodyworks | 2011-04-05 13:54:06 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-04 21:28:02 -0700 |
| commit | c97fa3016190f1a8332b4e9563d6b012f1ecfe81 (patch) | |
| tree | 4309db695cfe3370b02878d6c53a4c7faa4d8291 /Library | |
| parent | 0f3213f6a60e8dc37bcc217e2ebf182f5f4f9d64 (diff) | |
| download | homebrew-c97fa3016190f1a8332b4e9563d6b012f1ecfe81.tar.bz2 | |
pure 0.47
The --without-elisp flag was added; otherwise it attempts to install
elisp extensions to the system elisp. Also, install online docs.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pure.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/pure.rb b/Library/Formula/pure.rb index 774627256..0cb5ae572 100644 --- a/Library/Formula/pure.rb +++ b/Library/Formula/pure.rb @@ -1,9 +1,9 @@ require 'formula' class Pure < Formula - url 'http://pure-lang.googlecode.com/files/pure-0.46.tar.gz' + url 'http://pure-lang.googlecode.com/files/pure-0.47.tar.gz' homepage 'http://code.google.com/p/pure-lang/' - sha1 '0b5304463d4c50474936d7921f884e029a5d1ccc' + sha1 'f47915ffa9fd0c7dee40f364a5751bfd4f945bf1' depends_on 'llvm' depends_on 'gmp' @@ -12,8 +12,10 @@ class Pure < Formula def install system "./configure", "--disable-debug", "--prefix=#{prefix}", - "--enable-release" + "--enable-release", + "--without-elisp" system "make" system "make install" + system "make install-docs" end end |
