diff options
| author | M.Schneider | 2010-09-03 14:20:11 +0200 |
|---|---|---|
| committer | David Höppner | 2010-09-04 16:20:09 +0200 |
| commit | ba651e5882803c19a98ee1f49a3ef5754695fa7f (patch) | |
| tree | b9ae6cbceefbd292047514ced01447cf523f75ec /Library/Formula/libmpq.rb | |
| parent | 78f4e35e15476cd61912a0dc149b79db1e14d9ea (diff) | |
| download | homebrew-ba651e5882803c19a98ee1f49a3ef5754695fa7f.tar.bz2 | |
libmpq Formula added
Signed-off-by: David Höppner <0xffea@gmail.com>
* man dir
Diffstat (limited to 'Library/Formula/libmpq.rb')
| -rw-r--r-- | Library/Formula/libmpq.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/libmpq.rb b/Library/Formula/libmpq.rb new file mode 100644 index 000000000..752db005f --- /dev/null +++ b/Library/Formula/libmpq.rb @@ -0,0 +1,13 @@ +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 |
