Skip to content

Commit a4d738e

Browse files
committed
[feat] update fasttrack to 6.5.0
1 parent a56c18d commit a4d738e

2 files changed

Lines changed: 12 additions & 14 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
2727
- name: Run CLI binary to verify install
2828
run: |
29-
fasttrack-cli --help
29+
fasttrack --cli --help
3030
3131
- name: Symlink
3232
run: |

fasttrack.rb

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
class Fasttrack < Formula
22
desc "FastTrack is a cross-platform application designed to track multiple objects in video recording. "
33
homepage "https://fasttrack.sh"
4-
url "https://github.com/FastTrackOrg/FastTrack/archive/refs/tags/v6.4.0.tar.gz"
5-
sha256 "4f2de4d0ed185591722361dd21998cce489f5c97e7fe2a77c7d0e10d6193a8c3"
4+
url "https://github.com/FastTrackOrg/FastTrack/archive/refs/tags/v6.5.0.tar.gz"
5+
sha256 "a28e975709f9654063fe4cfe91b8758818724b41f68986fdd20a356476cb69c8"
66
license "GPL-3.0"
7-
revision 4
7+
revision 1
88

99
depends_on "cmake" => :build
1010
depends_on "pkg-config" => :build
@@ -16,23 +16,21 @@ def install
1616
system "cmake", "--build", "build"
1717

1818
libexec.install "build/bin/fasttrack.app"
19-
(bin/"fasttrack").write <<~EOS
20-
#!/bin/bash
21-
open "#{libexec}/fasttrack.app"
22-
EOS
2319

24-
bin.install "build/bin/fasttrack-cli.app/Contents/MacOS/fasttrack-cli"
20+
bin.install_symlink libexec/"fasttrack.app/Contents/MacOS/fasttrack"
2521
end
2622

2723
def caveats
2824
<<~EOS
29-
To launch the FastTrack GUI:
30-
fasttrack
25+
🎉 FastTrack has been installed!
3126
32-
To use the command-line tool:
33-
fasttrack-cli
27+
🖥️ To run the CLI:
28+
fasttrack --cli [options]
29+
30+
▶️ To launch the GUI (from Terminal):
31+
fasttrack
3432
35-
If you want to launch the FastTrack GUI like a regular app:
33+
🧩 Optional: Add FastTrack to your Applications folder:
3634
ln -s "#{opt_libexec}/fasttrack.app" /Applications/FastTrack.app
3735
EOS
3836
end

0 commit comments

Comments
 (0)