-
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
0 parents
commit ff4cf22
Showing
3 changed files
with
42 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,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 |
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,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 |
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,2 @@ | ||
#!/bin/bash | ||
echo "Hello epidemic!" |