aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorPaul J. Davis2009-11-14 20:21:35 -0500
committerMax Howell2009-12-05 17:50:31 +0000
commit641355f08ced6adf7acc684b556d2c5abbe2c1eb (patch)
tree33c47f8fb5089a6d7f50c1392dc171442e7c548e /Library
parentb1af41ef457ca5a025d0707f84fa42a0d2d444c4 (diff)
downloadhomebrew-641355f08ced6adf7acc684b556d2c5abbe2c1eb.tar.bz2
Adding a formula for GNU Portable Threads.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pth.rb16
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