aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTim Gray2012-06-29 10:42:56 -0400
committerAdam Vandenberg2012-09-01 13:46:48 -0700
commit8301c5f3eef8792e7af096e3f83491f084172938 (patch)
treec2bfc8721d1cc28c0f9db1106e311f5b6a381394 /Library/Formula
parent358bd280bc85bc96ad8620d57cc29e023c395816 (diff)
downloadhomebrew-8301c5f3eef8792e7af096e3f83491f084172938.tar.bz2
lbdb 0.38.1
I forked ldbd a while ago and modded (without much knowledge) the files to get it to build on 10.7 with Xcode 4. I tried to get the changes incorporated into the upstream, but have never gotten a response. - Tim Gray Closes #13095. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lbdb.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/Library/Formula/lbdb.rb b/Library/Formula/lbdb.rb
new file mode 100644
index 000000000..c7655a4dd
--- /dev/null
+++ b/Library/Formula/lbdb.rb
@@ -0,0 +1,29 @@
+require 'formula'
+
+# Originally:
+# homepage 'http://www.spinnaker.de/lbdb/'
+
+class Lbdb < Formula
+ homepage 'https://github.com/tgray/lbdb/'
+ url 'https://github.com/tgray/lbdb/tarball/v0.38.1'
+ sha1 '4678fe00c86850fd4f40891518a8d37ee3f5020b'
+
+ head 'git://github.com/tgray/lbdb.git'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+
+ def caveats; <<-EOS.undent
+ lbdb from <http://www.spinnaker.de/lbdb/> doesn't build on OS X because the
+ XCode project file is not compatible with XCode 4 or OS X 10.7. This
+ version of lbdb has been modified to fix this. A query was sent to the
+ upstream maintainer to see if he was interested in the patch, but so far,
+ there has been no response.
+
+ The homepage of this version is <https://github.com/tgray/lbdb/>
+ EOS
+ end
+end