aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rarian.rb
diff options
context:
space:
mode:
authorTrevor Wennblom2011-06-26 06:26:45 -0500
committerAdam Vandenberg2012-02-18 15:32:27 -0800
commit3b656f5d1c72f07410ab6fdb6b4ee3425673bf1c (patch)
treec73ee7c2d734facf671e534f70501c49fe75e08a /Library/Formula/rarian.rb
parent8f1b5684873584e9357e713b839e45dc31e6b776 (diff)
downloadhomebrew-3b656f5d1c72f07410ab6fdb6b4ee3425673bf1c.tar.bz2
rarian 0.8.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/rarian.rb')
-rw-r--r--Library/Formula/rarian.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/rarian.rb b/Library/Formula/rarian.rb
new file mode 100644
index 000000000..42457937f
--- /dev/null
+++ b/Library/Formula/rarian.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Rarian < Formula
+ homepage 'http://rarian.freedesktop.org/'
+ url 'http://rarian.freedesktop.org/Releases/rarian-0.8.1.tar.bz2'
+ md5 '75091185e13da67a0ff4279de1757b94'
+
+ def install
+ if Formula.factory('scrollkeeper').installed?
+ opoo "rarian conflicts with scrollkeeper. Your scrollkeeper binaries will be overwritten.
+ If this bothers you, you can restore scrollkeeper with `brew link scrollkeeper`."
+ end
+
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end