homebrew-core/Formula/abook.rb

41 lines
1.0 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Abook < Formula
homepage 'http://abook.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/abook/abook/0.5.6/abook-0.5.6.tar.gz'
sha1 '79f04f2264c8bd81bbc952b6560c86d69b21615d'
devel do
url 'http://abook.sourceforge.net/devel/abook-0.6.0pre2.tar.gz'
sha1 '42a939fba43e51aa011fa185113c12ec4bc1e1ec'
2014-05-30 17:46:54 +00:00
version '0.6.0pre2'
2014-03-18 03:44:46 +00:00
# Remove `inline` from function implementation for clang compatibility
patch :DATA
end
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
__END__
diff --git a/database.c b/database.c
index 7c47ab6..53bdb9f 100644
--- a/database.c
+++ b/database.c
@@ -762,7 +762,7 @@ item_duplicate(list_item dest, list_item src)
*/
/* quick lookup by "standard" field number */
-inline int
+int
field_id(int i)
{
assert((i >= 0) && (i < ITEM_FIELDS));