New formula libmpc (actually it is called mpc, but this conflicts with the existing mpc)

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Markus Groß 2010-04-20 22:52:06 +02:00 committed by Adam Vandenberg
parent 9a38122941
commit c89f196bfd
1 changed files with 13 additions and 0 deletions

13
Formula/libmpc.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Libmpc < Formula
url 'http://multiprecision.org/mpc/download/mpc-0.8.1.tar.gz'
homepage 'http://multiprecision.org'
md5 '5b34aa804d514cc295414a963aedb6bf'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end