1b3d028c83
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
22 lines
655 B
Ruby
22 lines
655 B
Ruby
require 'formula'
|
|
|
|
class Aggregate < Formula
|
|
homepage 'http://freshmeat.net/projects/aggregate/'
|
|
url 'ftp://ftp.isc.org/isc/aggregate/aggregate-1.6.tar.gz'
|
|
md5 '6fcc515388bf2c5b0c8f9f733bfee7e1'
|
|
|
|
def install
|
|
bin.mkpath
|
|
man1.mkpath
|
|
|
|
# Makefile doesn't respect --mandir or MANDIR
|
|
inreplace "Makefile.in", "$(prefix)/man/man1", "$(prefix)/share/man/man1"
|
|
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "CFLAGS=#{ENV.cflags}",
|
|
"LDFLAGS=#{ENV.ldflags}",
|
|
"install"
|
|
end
|
|
end
|