homebrew-core/Formula/libgtextutils.rb
nibbles 2bits 3add64665d libgtextutils 0.6.1
Upgrade libgtextutils to version 0.6.1. Ok with Clang on 10.8

Closes Homebrew/homebrew#14704.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-04 11:52:28 -07:00

15 lines
449 B
Ruby

require 'formula'
class Libgtextutils < Formula
homepage 'http://hannonlab.cshl.edu/fastx_toolkit/'
url 'http://hannonlab.cshl.edu/fastx_toolkit/libgtextutils-0.6.1.tar.bz2'
sha1 'dbf1714be75511feae3313904a7449a1f680bc23'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end