blob: ce452c4ee56f59df00cc1520ab8ae5b36921ac92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Libmpq <Formula
# Website currently has a bad SSL cert
url 'https://libmpq.org/download/libmpq-0.4.2.tar.bz2',
:using => CurlUnsafeDownloadStrategy
md5 '54ec039b9654ba1662485e1bc9682850'
homepage 'https://libmpq.org'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|