2010-05-01 01:07:04 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Abook < Formula
|
2010-05-01 01:07:04 +00:00
|
|
|
homepage 'http://abook.sourceforge.net/'
|
2013-01-26 22:01:15 +00:00
|
|
|
url 'http://downloads.sourceforge.net/abook/abook-0.5.6.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '79f04f2264c8bd81bbc952b6560c86d69b21615d'
|
2010-05-01 01:07:04 +00:00
|
|
|
|
2012-11-11 03:12:26 +00:00
|
|
|
depends_on 'readline'
|
2010-05-01 01:07:04 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-09 04:58:13 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2013-01-26 22:01:15 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-05-01 01:07:04 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|