homebrew-core/Formula/rarian.rb
2014-10-22 18:15:39 +01:00

22 lines
684 B
Ruby

require 'formula'
class Rarian < Formula
homepage 'http://rarian.freedesktop.org/'
url 'http://rarian.freedesktop.org/Releases/rarian-0.8.1.tar.bz2'
sha1 '9b3f1bad1cdbb0de51d6f74431b20eb3647edc5a'
bottle do
sha1 "7bcb93479d64a03980ea11928e21329388735885" => :yosemite
sha1 "757f09991a0a272b650a9b6f2ad08e422d410579" => :mavericks
sha1 "20352610cf52d4704a02c021b32ace3f00e0aa4c" => :mountain_lion
end
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