-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
92198b5
commit 8fe19ba
Showing
2 changed files
with
34 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,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
mkdir $PREFIX/bin | ||
|
||
cp $SRC_DIR/overmind $PREFIX/bin/overmind | ||
|
||
chmod +x $PREFIX/bin/overmind |
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 @@ | ||
{% set name = "overmind" %} | ||
{% set version = "2.4.0" %} | ||
|
||
package: | ||
name: {{ name }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/DarthSim/overmind/releases/download/v{{ version }}/overmind-v{{ version}}-macos-amd64.gz # [osx and x86_64] | ||
sha256: d0258dba536dad639cd52be4f1a3fb5143cf6d550d1830853ed6dcaaa886a399 # [osx and x86_64] | ||
url: https://github.com/DarthSim/overmind/releases/download/v{{ version }}/overmind-v{{ version }}-macos-arm64.gz # [osx and arm64] | ||
sha256: 6d1e4bd2ce5fa9ca7b3e8d400a7999dcd19cc17b2a4b8f5b8f649e0e91dc33b0 # [osx and arm64] | ||
url: https://github.com/DarthSim/overmind/releases/download/v{{ version }}/overmind-v{{ version }}-linux-arm64.gz # [linux64] | ||
sha256: 1f7cac289b550a71bebf4a29139e58831b39003d9831be59eed3e39a9097311c # [linux64] | ||
|
||
build: | ||
string: '1' | ||
binary_relocation: False | ||
|
||
test: | ||
commands: | ||
- overmind --version | ||
|
||
about: | ||
home: https://github.com/DarthSim/overmind | ||
license: MIT | ||
summary: Overmind is a process manager for Procfile-based applications and tmux. |