diff options
| author | Paul Capestany | 2014-05-14 15:24:15 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2014-05-14 17:35:37 -0700 | 
| commit | 26a4b4ed10ed2ad4728bcaef4786eab54b2f8ee1 (patch) | |
| tree | 892c923d6a3b504a82862e2231440afd171a292f | |
| parent | 1d067e453ec4e2ac0a4fcee189cb6382183f1604 (diff) | |
| download | homebrew-26a4b4ed10ed2ad4728bcaef4786eab54b2f8ee1.tar.bz2 | |
highlight 3.18
Closes #29267.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/highlight.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Formula/highlight.rb b/Library/Formula/highlight.rb index 6ec98da98..29fbe0d48 100644 --- a/Library/Formula/highlight.rb +++ b/Library/Formula/highlight.rb @@ -2,8 +2,8 @@ require 'formula'  class Highlight < Formula    homepage 'http://www.andre-simon.de/doku/highlight/en/highlight.html' -  url 'http://www.andre-simon.de/zip/highlight-3.14.tar.bz2' -  sha1 '02dd278367e9029baeb396cd6af77f11ceb731c5' +  url 'http://www.andre-simon.de/zip/highlight-3.18.tar.bz2' +  sha1 '985d0a3c707e3251fe50ffff66e11a8563777202'    depends_on 'pkg-config' => :build    depends_on 'boost' @@ -12,7 +12,7 @@ class Highlight < Formula    def install      inreplace "src/makefile" do |s|        s.change_make_var! "CXX", ENV.cxx -      s.gsub! /lua5.1/, "lua" +      s.gsub! /-DUSE_LUA52/, ""      end      conf_dir = etc+'highlight/' # highlight needs a final / for conf_dir | 
