Skip to content

Commit

Permalink
fix: update url and sha256
Browse files Browse the repository at this point in the history
  • Loading branch information
pinkynrg committed Aug 28, 2024
1 parent ecb1b61 commit 6b56048
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Formula/stay-active.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
class Stayactive < Formula
class StayActive < Formula
desc "Keeps Slack online and Mac awake"
homepage "https://github.com/pinkynrg/slack-awake"
url "https://github.com/yourusername/stayactive/archive/refs/tags/v0.1.0.tar.gz" # Replace with your tarball URL
sha256 "your_sha256_checksum" # Replace with the actual SHA256 checksum
homepage "https://github.com/pinkynrg/homebrew-slack-awake"
url "https://github.com/pinkynrg/homebrew-stay-active/archive/refs/tags/v1.0.0.tar.gz"
sha256 "e4146ca565a8031c21ee992c484a130fd5a03d93bf2ff772bafaecd37d67bee4"
license "MIT"

depends_on "cliclick" # This ensures cliclick is installed
depends_on "cliclick"

def install
bin.install "stay-active.sh" => "stayactive"
bin.install "src/stay-active.sh" => "stay-active"
end

test do
system "#{bin}/stayactive", "--version"
system "#{bin}/stay-active", "--version"
end
end
end

0 comments on commit 6b56048

Please sign in to comment.