aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2013-10-26 10:37:01 -0700
committerAdam Vandenberg2013-10-26 10:37:01 -0700
commit27fa18eb8a62cbfc6c8a1192f627dfa88d97a8f5 (patch)
tree1cbd4b755f84be5eacf90085acd5372b8e5d4375
parente5679fd85f60fdd70ebb946ccf0e7a39e0fb3690 (diff)
downloadhomebrew-27fa18eb8a62cbfc6c8a1192f627dfa88d97a8f5.tar.bz2
Redact flare
This has been non-compiling for a while, and the most recent version has an unlisted dependency. Since no users of this software have reported problems, redacting. Closes #23631.
-rw-r--r--Library/Formula/flare.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/Library/Formula/flare.rb b/Library/Formula/flare.rb
deleted file mode 100644
index 4168766fe..000000000
--- a/Library/Formula/flare.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'formula'
-
-class Flare < Formula
- homepage 'http://labs.gree.jp/Top/OpenSource/Flare-en.html'
- url 'http://labs.gree.jp/data/source/flare-1.0.16.1.tgz'
- sha1 'a3d022005695bbba97da94f824702e54837ba03c'
-
- head 'https://github.com/fujimoto/flare.git'
-
- depends_on :autoconf
- depends_on :automake
- depends_on :libtool
- depends_on 'tokyo-cabinet'
- depends_on 'boost'
-
- def install
- # Compatibility with Automake 1.13 and newer.
- inreplace 'configure.ac', 'AM_CONFIG_HEADER', 'AC_CONFIG_HEADERS'
- system "autoreconf -vfi"
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make install"
- end
-end