diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pth.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/pth.rb b/Library/Formula/pth.rb new file mode 100644 index 000000000..64a3c6249 --- /dev/null +++ b/Library/Formula/pth.rb @@ -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 |
