homebrew-core/Formula/abook.rb

17 lines
446 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Abook < Formula
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'
sha1 '79f04f2264c8bd81bbc952b6560c86d69b21615d'
depends_on 'readline'
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}"
system "make install"
end
end