File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8888 brew install Formula/clavy.rb --HEAD
8989 clavy --help
9090
91+ paneru-head :
92+ runs-on : macos-latest
93+ steps :
94+ - uses : actions/checkout@v5
95+ - name : Test install
96+ run : |
97+ brew update
98+ brew install Formula/paneru.rb --HEAD
99+ paneru --help
100+
91101 ouverture :
92102 runs-on : macos-latest
93103 steps :
Original file line number Diff line number Diff line change 1+ # typed: false
2+ # frozen_string_literal: true
3+
4+ class Paneru < Formula
5+ desc "A sliding, tiling window manager for MacOS."
6+ homepage "https://github.com/karinushka/paneru"
7+ version "0.1.0"
8+ license "MIT"
9+ depends_on :macos
10+
11+ url "https://github.com/karinushka/paneru/releases/download/v#{ version } /paneru_darwin_universal2.tar.gz"
12+
13+ def install
14+ if build . head? then
15+ system "cargo" , "install" , *std_cargo_args
16+ else
17+ bin . install "paneru"
18+ end
19+ end
20+
21+ head "https://github.com/karinushka/paneru.git"
22+
23+ head do
24+ depends_on "rust" => :build
25+ end
26+
27+ test do
28+ system "#{ bin } /paneru --help"
29+ end
30+ end
You can’t perform that action at this time.
0 commit comments