Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add overmind recipe #72

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions overmind/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

mkdir $PREFIX/bin

gunzip -c $SRC_DIR/overmind*.gz > $PREFIX/bin/overmind

chmod +x $PREFIX/bin/overmind
32 changes: 32 additions & 0 deletions overmind/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{% set name = "overmind" %}
{% set version = "2.4.0" %}

package:
name: {{ name }}
version: {{ version }}

source:
# > (OVERMIND_VER=2.4.0; for _arch in macos-amd64 macos-arm64 linux-arm64; do curl -sSL https://github.com/DarthSim/overmind/releases/download/v${OVERMIND_VER}/overmind-v${OVERMIND_VER}-${_arch}.gz | sha256sum; done)
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]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TY!

sha256: 6d1e4bd2ce5fa9ca7b3e8d400a7999dcd19cc17b2a4b8f5b8f649e0e91dc33b0 # [osx and arm64]
url: https://github.com/DarthSim/overmind/releases/download/v{{ version }}/overmind-v{{ version }}-linux-amd64.gz # [linux64]
sha256: 1f7cac289b550a71bebf4a29139e58831b39003d9831be59eed3e39a9097311c # [linux64]

build:
string: '1'
binary_relocation: False

requirements:
run:
- tmux 3.4

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.
Loading