Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dape-epidemicsound committed Aug 26, 2024
0 parents commit ff4cf22
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Formula/e/epidemicsound.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
class Epidemicsound < Formula
desc "Devtools for EpidemicSound"
homepage "https://www.epidemicsound.com"
url "insert-url-here"

# Keep alphabetised
depends_on "golang"

def install
bin.install "hello-epidemic.sh" => "hello-epidemic"
end
end
i
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Homebrew-epidemic

This is a private tap for Homebrew. Use it to distribute external tools required for development.

## Using

Run the following command to add this tap to your brew installation
```
brew tap epidemicsound/epidemicsound
```

To refresh the tap configuration force a brew update using ```HOMEBREW_AUTO_UPDATE_SECS```.
This is mainly needed during development of this tap.
```
HOMEBREW_AUTO_UPDATE_SECS=0 brew tap epidemicsound/epidemicsound
```


## Adding more tools

Add the dependecy to ```Formula/e/epidemicsound.rb```

## Useful links

- https://docs.brew.sh/How-to-Create-and-Maintain-a-Tap
- https://docs.brew.sh/Taps
- https://docs.brew.sh/Formula-Cookbook
2 changes: 2 additions & 0 deletions hello-epidemic.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
echo "Hello epidemic!"

0 comments on commit ff4cf22

Please sign in to comment.