homebrew-core/Formula/cdecl.rb
Sascha Kratky f7ee1daec7 new formula: cdecl
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2011-01-06 23:20:29 +00:00

21 lines
541 B
Ruby

require 'formula'
class Cdecl <Formula
url 'http://cdecl.org/files/cdecl-blocks-2.5.tar.gz'
homepage 'http://cdecl.org/'
md5 'c1927e146975b1c7524cbaf07a7c10f8'
def install
inreplace "Makefile" do |s|
s.change_make_var! "CC", ENV.cc
s.change_make_var! "CFLAGS", "#{ENV.cflags} -DBSD -DUSE_READLINE"
s.change_make_var! "LIBS", "-lreadline"
s.change_make_var! "BINDIR", bin
s.change_make_var! "MANDIR", man1
end
system "make"
bin.mkdir
man1.mkpath
system "make install"
end
end