homebrew-core/Formula/libmpq.rb

14 lines
366 B
Ruby
Raw Normal View History

require 'formula'
class Libmpq <Formula
url 'https://libmpq.org/download/libmpq-0.4.2.tar.bz2'
homepage 'https://libmpq.org'
md5 '54ec039b9654ba1662485e1bc9682850'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end