homebrew-core/Formula/kyoto-cabinet.rb

22 lines
568 B
Ruby
Raw Normal View History

2010-05-27 17:17:37 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class KyotoCabinet < Formula
homepage 'http://fallabs.com/kyotocabinet/'
2012-06-04 01:53:59 +00:00
url 'http://fallabs.com/kyotocabinet/pkg/kyotocabinet-1.2.76.tar.gz'
sha1 'a4ec70d08ca6c8f510dbc329d5c27b55030d3521'
2010-05-27 17:17:37 +00:00
fails_with :clang do
build 318
cause <<-EOS.undent
Kyoto-cabinet relies on GCC atomic intrinsics, but Clang does not
implement them for non-integer types.
2012-06-04 01:53:59 +00:00
EOS
end
2010-05-27 17:17:37 +00:00
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make" # Separate steps required
system "make install"
end
end