homebrew-core/Formula/libsigsegv.rb
Tianyi Cui 270cb0116b libsigsegv: version 2.8 and other updates
1. use http rather than ftp.

HTTP is usable for all users, even for those who have only a HTTP_PROXY.

2. update homepage.

The sourceforge one is out of date.

3. Remove "--disable-debug" when "./configure".

This option is not recognized here.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-30 21:27:57 -07:00

15 lines
406 B
Ruby

require 'formula'
class Libsigsegv <Formula
url 'http://ftp.gnu.org/pub/gnu/libsigsegv/libsigsegv-2.8.tar.gz'
homepage 'http://www.gnu.org/software/libsigsegv/'
md5 'ebe554e26870d8bc200ef3e3539ffd7c'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make check"
system "make install"
end
end