aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/flare.rb
diff options
context:
space:
mode:
authorNibbles 2bits2011-10-27 11:34:16 -0700
committerAdam Vandenberg2011-10-29 10:52:24 -0700
commite17f91414c6d7001a260bb4a99ae2fd292616d67 (patch)
tree6d1cc45a5c9d399fb491701e431fb64360e4527b /Library/Formula/flare.rb
parentda00fe346fc03028f750656cc533a24a17ad78ab (diff)
downloadhomebrew-e17f91414c6d7001a260bb4a99ae2fd292616d67.tar.bz2
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>
Diffstat (limited to 'Library/Formula/flare.rb')
-rw-r--r--Library/Formula/flare.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/flare.rb b/Library/Formula/flare.rb
index 46fe5befb..75626eded 100644
--- a/Library/Formula/flare.rb
+++ b/Library/Formula/flare.rb
@@ -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