Adding a formula for GNU Portable Threads.
This commit is contained in:
parent
6604c77827
commit
a31d3d7e95
1 changed files with 16 additions and 0 deletions
16
Formula/pth.rb
Normal file
16
Formula/pth.rb
Normal 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
|
Loading…
Reference in a new issue