diff options
| author | Peter Aronoff | 2010-04-30 21:07:04 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-30 19:29:59 -0700 |
| commit | fc54ab8b994fb577a9b1dba548ed4366a31f193c (patch) | |
| tree | 4ec6b867154a50b1a436824f6d88e92a24e7e99b | |
| parent | c6457286b54bb7602b5b82c1370c09a4a3c22c41 (diff) | |
| download | homebrew-fc54ab8b994fb577a9b1dba548ed4366a31f193c.tar.bz2 | |
Add a new formula for abook
From abook's website (http://abook.sourceforge.net/):
Abook is a text-based addressbook program designed to use with mutt mail
client. Abook runs on Linux, FreeBSD and some other UNIXes.
Probably not the world's most important package, but I can't be the only
mutt-user who missed it.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/abook.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/abook.rb b/Library/Formula/abook.rb new file mode 100644 index 000000000..0c6225e74 --- /dev/null +++ b/Library/Formula/abook.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Abook <Formula + url 'http://prdownloads.sourceforge.net/abook/abook-0.5.6.tar.gz' + homepage 'http://abook.sourceforge.net/' + md5 '87d25df96864a7c507a4965e6d1da49d' + + depends_on 'readline' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}" + system "make install" + end +end |
