mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
+vhs
This commit is contained in:
parent
1e14d103b2
commit
c6207b623c
1 changed files with 38 additions and 0 deletions
38
projects/charm.sh/vhs/package.yml
Normal file
38
projects/charm.sh/vhs/package.yml
Normal file
|
@ -0,0 +1,38 @@
|
|||
distributable:
|
||||
url: https://github.com/charmbracelet/vhs/archive/refs/tags/v{{version}}.tar.gz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
github: charmbracelet/vhs
|
||||
|
||||
provides:
|
||||
- bin/vhs
|
||||
|
||||
interprets:
|
||||
extensions: tape
|
||||
args: vhs
|
||||
|
||||
dependencies:
|
||||
ffmpeg.org: '>=5' # note might work with older versions
|
||||
tsl0922.github.io/ttyd: 1
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
go.dev: ^1.18
|
||||
script: |
|
||||
go mod download
|
||||
go build -v -ldflags="$LDFLAGS"
|
||||
mkdir -p "{{ prefix }}"/bin
|
||||
mv vhs "{{ prefix }}"/bin
|
||||
env:
|
||||
LDFLAGS:
|
||||
- -s -w
|
||||
linux:
|
||||
# or segmentation fault
|
||||
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
|
||||
LDFLAGS:
|
||||
- -buildmode=pie
|
||||
|
||||
#TODO better
|
||||
test:
|
||||
vhs --version
|
Loading…
Reference in a new issue