Skip to content

Commit

Permalink
new formula: cdecl
Browse files Browse the repository at this point in the history
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
sakra authored and MikeMcQuaid committed Jan 6, 2011
1 parent cc6b6a3 commit 11a6743
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Library/Formula/cdecl.rb
@@ -0,0 +1,21 @@
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

0 comments on commit 11a6743

Please sign in to comment.