-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class Cowponder < Formula | ||
desc "Description of your package" | ||
homepage "https://example.com" | ||
url "https://example.com/your-package/archive/v1.0.0.tar.gz" | ||
sha256 "checksum" | ||
|
||
# Additional options and dependencies can be specified here | ||
|
||
def install | ||
# Build and install your package here | ||
end | ||
|
||
test do | ||
# Add some test cases here if applicable | ||
end | ||
end |