Adding a formula for GNU Portable Threads.

This commit is contained in:
Paul J. Davis 2009-11-14 20:21:35 -05:00 committed by Max Howell
parent 6604c77827
commit a31d3d7e95

16
Formula/pth.rb Normal file
View file

@ -0,0 +1,16 @@
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}",
"--disable-debug",
"--disable-dependency-tracking"
system "make install"
end
end