16 lines
384 B
Ruby
16 lines
384 B
Ruby
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
|