Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Formula/uniqtag.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ class Uniqtag < Formula
# cite Jackman_2015: "https://doi.org/10.1371/journal.pone.0128026"
desc "Abbreviate strings to short unique identifiers"
homepage "https://github.com/sjackman/uniqtag"
url "https://github.com/sjackman/uniqtag/archive/refs/tags/1.0.tar.gz"
sha256 "8ff0dd850c15ff3468707ae38a171deb6518866a699964a1aeeec9c90ded7313"
url "https://github.com/sjackman/uniqtag/archive/refs/tags/1.0.1.tar.gz"
sha256 "ead5cc86658ffb928c68501ed3a17608c76fdb7eaf21cd291f88cf4582bf3ea2"
license "MIT"
head "https://github.com/sjackman/uniqtag.git"
head "https://github.com/sjackman/uniqtag.git", branch: "master"

bottle do
root_url "https://ghcr.io/v2/brewsci/bio"
Expand All @@ -16,6 +16,8 @@ class Uniqtag < Formula
uses_from_macos "ruby"

def install
# Upstream did not bump the internal version string in the 1.0.1 release
inreplace "uniqtag", 'opts.version = "1.0.0"', "opts.version = \"#{version}\""
system "make", "install", "prefix=#{prefix}"
end

Expand Down