2009-11-15 01:21:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pth <Formula
|
|
|
|
url 'ftp://ftp.gnu.org/gnu/pth/pth-2.0.7.tar.gz'
|
|
|
|
homepage 'http://www.gnu.org/software/pth/'
|
|
|
|
md5 '9cb4a25331a4c4db866a31cbe507c793'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
system "./configure",
|
|
|
|
"--prefix=#{prefix}",
|
2010-03-27 22:14:30 +00:00
|
|
|
# Shared library will not be build with disable debug
|
|
|
|
# "--disable-debug",
|
2009-11-15 01:21:35 +00:00
|
|
|
"--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|