homebrew-core/Formula/frag_find.rb
Mark A. Matienzo 00d79ce3cb frag_find 1.0.0
Closes Homebrew/homebrew#19680.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-04 15:56:34 -07:00

17 lines
428 B
Ruby

require 'formula'
class FragFind < Formula
homepage 'https://github.com/simsong/frag_find'
url 'http://digitalcorpora.org/downloads/frag_find/frag_find-1.0.0.tar.gz'
sha1 '253347cd55196c9f268e0e63825cc2406437977c'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/frag_find"
end
end