Skip to content

Instantly share code, notes, and snippets.

@leoncamel
Created March 9, 2012 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leoncamel/2006382 to your computer and use it in GitHub Desktop.
Save leoncamel/2006382 to your computer and use it in GitHub Desktop.
require 'formula'
class Highlight < Formula
url 'http://www.andre-simon.de/zip/highlight-3.8.tar.bz2'
homepage 'http://www.andre-simon.de/doku/highlight/en/highlight.html'
sha1 '007a008f1846485e86ad9347f98f69a22afeb718'
depends_on 'boost'
depends_on 'lua'
def install
inreplace "src/Makefile" do |s|
s.change_make_var! "CXX", ENV.cxx
end
inreplace ["src/makefile"] do |s|
s.gsub! /^(CFLAGS):=.*$/, "\\1 = #{ENV.cppflags}"
s.gsub! /^(LUA_LIBS)=(.*)$/, "\\1 = #{ENV.ldflags} \\2"
end
conf_dir = etc+'highlight/' # highlight needs a final / for conf_dir
system "make", "PREFIX=#{prefix}", "conf_dir=#{conf_dir}"
system "make", "PREFIX=#{prefix}", "conf_dir=#{conf_dir}", "install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment