diff options
| author | Paul J. Davis | 2009-11-14 20:21:35 -0500 |
|---|---|---|
| committer | Max Howell | 2009-12-05 17:50:31 +0000 |
| commit | 641355f08ced6adf7acc684b556d2c5abbe2c1eb (patch) | |
| tree | 33c47f8fb5089a6d7f50c1392dc171442e7c548e /Library | |
| parent | b1af41ef457ca5a025d0707f84fa42a0d2d444c4 (diff) | |
| download | homebrew-641355f08ced6adf7acc684b556d2c5abbe2c1eb.tar.bz2 | |
Adding a formula for GNU Portable Threads.
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 |
