2010-08-04 04:29:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lemon < Formula
|
2010-08-04 04:29:47 +00:00
|
|
|
url 'http://tx97.net/pub/distfiles/lemon-1.69.tar.bz2'
|
|
|
|
homepage 'http://www.hwaci.com/sw/lemon/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '3f368f5f93c37890a025c3d803b3598a939d615f'
|
2010-08-04 04:29:47 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
lemon_share = share+'lemon'
|
|
|
|
|
|
|
|
lemon_share.install 'lempar.c'
|
|
|
|
|
|
|
|
# patch the parser generator to look for the 'lempar.c' template file where we've installed it
|
|
|
|
lempar_path = lemon_share+'lempar.c'
|
|
|
|
inreplace 'lemon.c', / = pathsearch\([^)]*\);/, " = \"#{lempar_path}\";"
|
|
|
|
|
|
|
|
system ENV.cc, '-o', 'lemon', 'lemon.c'
|
|
|
|
bin.install 'lemon'
|
|
|
|
end
|
|
|
|
end
|