diff options
| author | Lance Parsons | 2012-01-20 18:27:15 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-03-21 21:20:14 -0500 |
| commit | f30d35b1f8a153d9202e2ee6455721dcd064a9b4 (patch) | |
| tree | 4147355dfea7557bc0e9ed54eb898583ec02433f | |
| parent | 31e47350da8a634e7a3c5740a0d8126b81811906 (diff) | |
| download | homebrew-f30d35b1f8a153d9202e2ee6455721dcd064a9b4.tar.bz2 | |
New formula: libgtextutils
Adding new formula for libgtextutils which is a required library for
fastx_toolkit
Closes #9696.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/libgtextutils.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/libgtextutils.rb b/Library/Formula/libgtextutils.rb new file mode 100644 index 000000000..f3e727b0a --- /dev/null +++ b/Library/Formula/libgtextutils.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Libgtextutils < Formula + homepage 'http://hannonlab.cshl.edu/fastx_toolkit/' + url 'http://hannonlab.cshl.edu/fastx_toolkit/libgtextutils-0.6.tar.bz2' + md5 'd6969aa0d31cc934e1fedf3fe3d0dc63' + + def install + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make" + system "make install" + end +end |
