homebrew-core/Formula/libmpq.rb
Jack Nagel 7dbc8160ba libmpq: use inreplace instead of a patch
I also removed an unnecessary invocation of `sh`.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-18 14:21:47 -05:00

17 lines
512 B
Ruby

require 'formula'
class Libmpq < Formula
# libmpq.org has seen prolonged downtime
head 'https://github.com/ge0rg/libmpq.git'
homepage 'https://github.com/ge0rg/libmpq'
def install
# on OS X, it's 'glibtoolize'
inreplace 'autogen.sh', 'libtoolize', 'glibtoolize'
system "./autogen.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end