blob: 54cf3c87b97e10cd4b99a782dd1de386c4e9ec02 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | require 'formula'
class Cdecl < Formula
  homepage 'http://cdecl.org/'
  url 'http://cdecl.org/files/cdecl-blocks-2.5.tar.gz'
  md5 'c1927e146975b1c7524cbaf07a7c10f8'
  def install
    # Fix namespace clash with Lion's getline
    inreplace "cdecl.c", "getline", "cdecl_getline"
    bin.mkpath
    man1.mkpath
    ENV.append 'CFLAGS', '-DBSD -DUSE_READLINE -std=gnu89'
    system "make", "CC=#{ENV.cc}",
                   "CFLAGS=#{ENV.cflags}",
                   "LIBS=-lreadline",
                   "BINDIR=#{bin}",
                   "MANDIR=#{man1}",
                   "install"
  end
end
 |