54bad3121c
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>
16 lines
439 B
Ruby
16 lines
439 B
Ruby
require 'formula'
|
|
|
|
class Flare < Formula
|
|
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'
|
|
sha1 'c27c5c320f1128a318bba0b459f9c855dff80d89'
|
|
|
|
depends_on 'tokyo-cabinet'
|
|
depends_on 'boost'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|