diff options
| author | Carlos Borroto | 2011-05-09 14:27:56 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-06-14 14:15:28 -0700 |
| commit | 3f6eff144f2711c1f44a1415c280b29c904cfba0 (patch) | |
| tree | 26de792da7be3f150fbad56e84675f44b2868d0f | |
| parent | 0a53bcf2c378e9ef98221ca8340c30c40696d69b (diff) | |
| download | homebrew-3f6eff144f2711c1f44a1415c280b29c904cfba0.tar.bz2 | |
tabix 0.2.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/tabix.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/tabix.rb b/Library/Formula/tabix.rb new file mode 100644 index 000000000..646651944 --- /dev/null +++ b/Library/Formula/tabix.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Tabix < Formula + url 'http://sourceforge.net/projects/samtools/files/tabix/tabix-0.2.5.tar.bz2' + homepage 'http://samtools.sourceforge.net/' + md5 '1fb65a3f79a81681ad6d5012498d2d51' + head 'https://samtools.svn.sourceforge.net/svnroot/samtools/trunk/tabix' + + def install + system "make" + bin.install %w{tabix bgzip} + man1.install 'tabix.1' + ln_s man1+'tabix.1', man1+'bgzip.1' + end +end |
