Skip to content

Instantly share code, notes, and snippets.

@porterjamesj
Created August 14, 2019 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save porterjamesj/39b05515e191c450b9003101bf7f1d61 to your computer and use it in GitHub Desktop.
Save porterjamesj/39b05515e191c450b9003101bf7f1d61 to your computer and use it in GitHub Desktop.
Homebrew formula for timelens (timelens.io)
class Timelens < Formula
desc "Timelens command-line client"
homepage "https://timelens.io"
url "https://github.com/timelens/timelens/archive/0.1.1.tar.gz"
sha256 "b7777d655945c3ee52909efcc6d38029a6db12438ae2aa4616291f04f1f776b1"
depends_on "rust" => :build
depends_on "gstreamer"
depends_on "gst-plugins-base"
depends_on "gst-plugins-good"
depends_on "gst-libav"
def install
system "cargo", "install", "--root", prefix,
"--path", "."
end
test do
# TODO write actual test
return true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment