mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
0a87077413
commit
c7a337c546
2 changed files with 15 additions and 7 deletions
|
@ -16,15 +16,22 @@ provides:
|
|||
- bin/ffmpeg
|
||||
- bin/ffprobe
|
||||
|
||||
dependencies:
|
||||
lame.sourceforge.io: '>=3.98.3'
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
x86-64:
|
||||
nasm.us: 2
|
||||
script: |
|
||||
./configure --prefix="{{prefix}}"
|
||||
make --jobs {{hw.concurrency}}
|
||||
make install
|
||||
script:
|
||||
- ./configure $ARGS
|
||||
- make --jobs {{hw.concurrency}}
|
||||
- make install
|
||||
env:
|
||||
ARGS:
|
||||
- --prefix="{{prefix}}"
|
||||
- --enable-libmp3lame
|
||||
|
||||
test: |
|
||||
ffmpeg -filter_complex testsrc=rate=1:duration=1 out.mp4
|
||||
test -f out.mp4
|
||||
test:
|
||||
- ffmpeg -filter_complex testsrc=rate=1:duration=1 out.mp4
|
||||
- test -f out.mp4
|
||||
|
|
|
@ -8,6 +8,7 @@ versions:
|
|||
|
||||
dependencies:
|
||||
python.org: '>=3<3.12'
|
||||
ffmpeg.org: '*'
|
||||
|
||||
build: python-venv.sh {{prefix}}/bin/yt-dlp
|
||||
|
||||
|
|
Loading…
Reference in a new issue