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

rtptools: move to newer github #66556

Closed
wants to merge 3 commits into from
Closed
Changes from 2 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
13 changes: 10 additions & 3 deletions Formula/rtptools.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
class Rtptools < Formula
desc "Set of tools for processing RTP data"
homepage "https://web.archive.org/web/20190924020700/www.cs.columbia.edu/irt/software/rtptools/"
url "https://web.archive.org/web/20190714051650/www.cs.columbia.edu/irt/software/rtptools/download/rtptools-1.22.tar.gz"
sha256 "2c76b2a423fb943820c91194372133a44cbdc456ebf69c51616ec50eeb068c28"
url "https://github.com/irtlab/rtptools/archive/1.22.tar.gz"
sha256 "ac6641558200f5689234989e28ed3c44ead23757ccf2381c8878933f9c2523e0"
license "BSD-3-Clause"
head "https://github.com/irtlab/rtptools.git"

livecheck do
url "https://github.com/columbia-irt/rtptools.git"
url "https://github.com/irtlab/rtptools/releases/latest"
regex(%r{href=.*?/tag/v?(\d+(?:\.\d+)+)["' >]}i)
mitchblank marked this conversation as resolved.
Show resolved Hide resolved
end

bottle do
Expand All @@ -16,7 +19,11 @@ class Rtptools < Formula
sha256 "e96df17dfe878ecb9e87a938579a21d514e31dbf8e5e6b743264dac23e42501c" => :high_sierra
end

depends_on "autoconf" => :build
depends_on "automake" => :build

def install
system "autoreconf", "--verbose", "--install", "--force"
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
Expand Down