homebrew-core/Formula/pth.rb
Michel Steuwer 73a3c931ee 'Fixed' an issu with pth. The dylib library wasn't build. Removing the --disable-debug option fixes the problem.
Signed-off-by: David Höppner <0xffea@gmail.com>

* add comment in the formula
2010-03-28 15:16:14 +02:00

17 lines
438 B
Ruby

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