Jean-Francois Dockes 17cb5123ca homebrew->1.19.9
2013-11-21 13:27:00 +00:00

20 lines
375 B
Ruby

require 'formula'
class Recoll < Formula
homepage 'http://www.recoll.org'
url 'http://www.recoll.org/recoll-1.19.9.tar.gz'
sha1 'ab662057082eb889b196653c328440ed95bf9ac4'
depends_on 'xapian'
depends_on 'qt'
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/recollindex", "-h"
end
end