2010-09-03 12:20:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libmpq < Formula
|
2011-02-20 19:23:47 +00:00
|
|
|
# Website currently has a bad SSL cert
|
|
|
|
url 'https://libmpq.org/download/libmpq-0.4.2.tar.bz2',
|
|
|
|
:using => CurlUnsafeDownloadStrategy
|
|
|
|
|
2010-09-03 12:20:11 +00:00
|
|
|
md5 '54ec039b9654ba1662485e1bc9682850'
|
2011-02-20 19:23:47 +00:00
|
|
|
homepage 'https://libmpq.org'
|
2010-09-03 12:20:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2011-02-20 19:23:47 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-09-03 12:20:11 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|