aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/highlight.rb
diff options
context:
space:
mode:
authorFelix Schulze2011-06-10 20:13:05 +0200
committerAdam Vandenberg2011-06-13 13:56:08 -0700
commit7bf66b9f0c3c9b44fea4085c882564c5d4b364f8 (patch)
treef4c1fbfde83257a8db2ccac3a718e5cf18521033 /Library/Formula/highlight.rb
parent5e494c29421ea5332a4323fb66c2affbc32d7750 (diff)
downloadhomebrew-7bf66b9f0c3c9b44fea4085c882564c5d4b364f8.tar.bz2
highlight 3.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/highlight.rb')
-rw-r--r--Library/Formula/highlight.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/highlight.rb b/Library/Formula/highlight.rb
index 0991e6d3f..7a5830d65 100644
--- a/Library/Formula/highlight.rb
+++ b/Library/Formula/highlight.rb
@@ -1,13 +1,15 @@
require 'formula'
class Highlight < Formula
- url 'http://www.andre-simon.de/zip/highlight-2.16.tar.bz2'
+ url 'http://www.andre-simon.de/zip/highlight-3.5.tar.bz2'
homepage 'http://www.andre-simon.de/doku/highlight/en/highlight.html'
- sha1 'b5fed14bb1a973fe134dd2133766bb86fdc7494e'
+ sha1 '0e57b45103b6f471a96f987f98dc5e09fed138b5'
+
+ depends_on 'boost'
+ depends_on 'lua'
def install
- conf = etc+'highlight/'
- system "make", "PREFIX=#{prefix}", "conf_dir=#{conf}"
- system "make", "PREFIX=#{prefix}", "conf_dir=#{conf}", "install"
+ system "make", "PREFIX=#{prefix}", "conf_dir=#{etc}/highlight"
+ system "make", "PREFIX=#{prefix}", "conf_dir=#{etc}/highlight", "install"
end
end