blob: 6ff7a6bf817e22fa4a1c3aa899db9627b3d55bbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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}",
# Shared library will not be build with disable debug
# "--disable-debug",
"--disable-dependency-tracking"
system "make install"
end
end
|