21 lines
546 B
Ruby
21 lines
546 B
Ruby
class Maclaunch < Formula
|
|
desc "Manage your macOS startup items"
|
|
homepage "https://github.com/hazcod/maclaunch"
|
|
url "https://github.com/hazcod/maclaunch/archive/2.4.tar.gz"
|
|
sha256 "9ae98a3bf592f002d2235f240c4c3318551cb17cdf1680ad060000fd69e11bf9"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "85afa782ab131dd363d78f2401de325d6ed04730612ac20fb6ec727cc92ebc65"
|
|
end
|
|
depends_on :macos
|
|
|
|
def install
|
|
bin.install "maclaunch.sh" => "maclaunch"
|
|
end
|
|
|
|
test do
|
|
system bin/"maclaunch", "list"
|
|
end
|
|
end
|