Skip to content

Commit 9621614

Browse files
Merge pull request #117 from g-maxime/timecodexml
Add formula for timecodexml
2 parents da029f3 + f854939 commit 9621614

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

timecodexml.rb

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class Timecodexml < Formula
2+
desc "Convert MediaTimecode XML from MediaInfo into MediaTimecode VTT"
3+
homepage "https://github.com/MediaArea/timecodexml"
4+
url "https://github.com/MediaArea/timecodexml/archive/refs/tags/v0.1.tar.gz"
5+
sha256 "88123b13fd92fa73c1c433421d0018cb7158a01c761930ae2bd8ac93add853d9"
6+
head "https://github.com/MediaArea/timecodexml.git", branch: "main"
7+
8+
def install
9+
system "make"
10+
11+
bin.install "timecodexml2webvtt"
12+
end
13+
14+
test do
15+
assert_path_exists bin/"timecodexml2webvtt"
16+
end
17+
end

0 commit comments

Comments
 (0)