Files
banan-os/ports/ffmpeg/build.sh
Bananymous c7eb2dbdf3 ports: Replace SDL2 with sdl2-compat
There is no need to keep two SDL versions around
2026-07-05 00:24:20 +03:00

23 lines
492 B
Bash
Executable File

#!/bin/bash ../install.sh
NAME='ffmpeg'
VERSION='8.0.1'
DOWNLOAD_URL="https://ffmpeg.org/releases/ffmpeg-$VERSION.tar.xz#05ee0b03119b45c0bdb4df654b96802e909e0a752f72e4fe3794f487229e5a41"
DEPENDENCIES=('sdl2-compat' 'openssl')
CONFIGURE_OPTIONS=(
'--prefix=/usr'
'--target-os=none'
"--arch=$BANAN_ARCH"
"--cc=$CC"
"--cxx=$CXX"
'--enable-cross-compile'
'--enable-shared'
'--enable-gpl'
'--enable-version3'
'--enable-openssl'
)
configure() {
./configure "${CONFIGURE_OPTIONS[@]}"
}