flare 1.0.12

This commit upgrades the formula to flare-1.0.12 and removes the
flag for debug that is the default.  This compiles on 64bit Snow
Leopard with XCode-4.0.2 and gcc-4.2.1.5666, clang-2.0, and
llvm-2335.9.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Nibbles 2bits 2011-10-27 11:34:16 -07:00 committed by Adam Vandenberg
parent 3ea22c10f4
commit 54bad3121c

View file

@ -1,17 +1,16 @@
require 'formula'
class Flare < Formula
url 'http://labs.gree.jp/data/source/flare-1.0.11.tgz'
url 'http://labs.gree.jp/data/source/flare-1.0.12.tgz'
head 'https://github.com/fujimoto/flare.git'
homepage 'http://labs.gree.jp/Top/OpenSource/Flare-en.html'
md5 '8be9ac019c8e114bdff246daa82033a6'
sha1 'c27c5c320f1128a318bba0b459f9c855dff80d89'
depends_on 'tokyo-cabinet'
depends_on 'boost'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end