homebrew-core/Formula/libsigsegv.rb

23 lines
670 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libsigsegv < Formula
homepage 'http://www.gnu.org/software/libsigsegv/'
url 'http://ftpmirror.gnu.org/libsigsegv/libsigsegv-2.10.tar.gz'
mirror 'http://ftp.gnu.org/gnu/libsigsegv/libsigsegv-2.10.tar.gz'
sha256 '8460a4a3dd4954c3d96d7a4f5dd5bc4d9b76f5754196aa245287553b26d2199a'
fails_with :llvm do
build 2336
cause "Fails make check with LLVM GCC from XCode 4 on Snow Leopard"
end
2011-03-19 21:06:30 +00:00
2011-03-21 21:24:22 +00:00
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-shared"
system "make"
system "make check"
system "make install"
end
end