aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rarian.rb
blob: 111e5dd94719cf47628d2fb0212d10d05c396fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Rarian < Formula
  homepage 'http://rarian.freedesktop.org/'
  url 'http://rarian.freedesktop.org/Releases/rarian-0.8.1.tar.bz2'
  md5 '75091185e13da67a0ff4279de1757b94'

  conflicts_with 'scrollkeeper',
    :because => "rarian and scrollkeeper install the same binaries."

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end