2022-11-25 16:45:30 +03:00
|
|
|
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
|
2022-12-26 18:43:24 +03:00
|
|
|
tsl0922.github.io/ttyd: ^1.7.2
|
2022-11-25 16:45:30 +03:00
|
|
|
|
|
|
|
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:
|
2022-11-26 16:16:08 +03:00
|
|
|
[-s, -w, "-X=main.Version={{version}}"]
|
2022-11-25 16:45:30 +03:00
|
|
|
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
|