Skip to content
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
77 changes: 77 additions & 0 deletions ffmpeg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
package:
name: ffmpeg
version: 6.0
epoch: 0
description: ffmpeg multimedia library
copyright:
- license: LGPL-2.1-or-later

environment:
contents:
packages:
- wolfi-baselayout
- busybox
- ca-certificates-bundle
- build-base
- yasm

pipeline:
- uses: git-checkout
with:
repository: https://git.ffmpeg.org/ffmpeg.git
expected-commit: ea3d24bbe3c58b171e55fe2151fc7ffaca3ab3d2
tag: n${{package.version}}
depth: 1

- runs: |
./configure \
--prefix=/usr \
--libdir=/usr/lib \
--enable-shared

- uses: autoconf/make

- uses: autoconf/make-install

- uses: strip

data:
- name: libraries
items:
libavcodec60: libavcodec
libavdevice60: libavdevice
libavfilter9: libavfilter
libavformat60: libavformat
libavutil58: libavutil
libswresample4: libswresample
libswscale7: libswscale

subpackages:
- range: libraries
name: ${{range.key}}
description: "${{range.value}} library"
pipeline:
- runs: |
# CHECK-WHEN-VERSION-CHANGES: 6.0
mkdir -p "${{targets.subpkgdir}}"/usr/lib
mv "${{targets.destdir}}"/usr/lib/${{range.value}}.so.*.* "${{targets.subpkgdir}}"/usr/lib/

- name: ffmpeg-static
pipeline:
- uses: split/static
description: ffmpeg static libraries

- name: ffmpeg-dev
pipeline:
- uses: split/dev
description: ffmpeg development headers

- name: ffmpeg-doc
pipeline:
- uses: split/manpages
description: ffmpeg manpages

update:
enabled: true
release-monitor:
identifier: 5405
1 change: 1 addition & 0 deletions packages.txt
Original file line number Diff line number Diff line change
Expand Up @@ -757,3 +757,4 @@ wireguard-go
acme.sh
libdbi
lighttpd
ffmpeg