Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

taxonkit 0.2.5 #459

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions Formula/taxonkit.rb
@@ -0,0 +1,20 @@
class Taxonkit < Formula
desc "Cross-platform and efficient NCBI taxonomy toolkit"
homepage "https://github.com/shenwei356/taxonkit"
version "0.2.5"
if OS.mac?
url "https://github.com/shenwei356/taxonkit/releases/download/v0.2.5-dev3/taxonkit_darwin_amd64.tar.gz"
sha256 "d0b1f4354a42a998515a380c7b650aa94d1a5b7cc6fc124a87602a6f0f6b190d"
elsif OS.linux?
url "https://github.com/shenwei356/taxonkit/releases/download/v0.2.5-dev3/taxonkit_linux_amd64.tar.gz"
sha256 "2a48f8bbe8bb12ad985bc0fb1273c88cf322f0016b4e068f9dd006d4b7a4a8d2"
end

def install
bin.install "taxonkit"
end

test do
assert_match version.to_s, shell_output("#{bin}/taxonkit --help 2>&1")
end
end