forked from pool/ffmpeg-5
Jan Engelhardt
e181b1b304
- Refresh Fedora OpenH264 dlopen patch and sources for OpenH264 2.3.1 * Patch: ffmpeg-dlopen-openh264.patch * Source: ffmpeg-dlopen-headers.tar.xz * Source: ffmpeg_get_dlopen_headers.sh OBS-URL: https://build.opensuse.org/request/show/1011140 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/ffmpeg-5?expand=0&rev=31
43 lines
1.5 KiB
Bash
43 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Script to grab headers from existing packages to support dlopen() codec libraries
|
|
# Requires: bash, coreutils, curl, bsdtar, dnf, dnf-plugins-core, tar, xz
|
|
# Author: Neal Gompa <ngompa@fedoraproject.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
echo "Setting up..."
|
|
# Get local directory
|
|
LOCALDIR=$(realpath $(dirname $0))
|
|
|
|
# Create working area
|
|
TMPDIR=$(mktemp -d /tmp/mmheadersXXXXXX)
|
|
mkdir -pv $TMPDIR
|
|
|
|
echo "Fetching headers..."
|
|
# Get OpenH264 headers
|
|
OPENH264_DEVEL=$(dnf -q download --url 'pkgconfig(openh264)')
|
|
curl -L $OPENH264_DEVEL | bsdtar -xvf - --include "./usr/include/*" -C $TMPDIR
|
|
|
|
echo "Generating tarball..."
|
|
# Prep tarball tree
|
|
mv -v ${TMPDIR}/usr ${TMPDIR}/ffdlopenhdrs
|
|
# Generate tarball
|
|
tar --transform "s|^${TMPDIR#?}/||" -cJvf ${LOCALDIR}/ffmpeg-dlopen-headers.tar.xz ${TMPDIR}/ffdlopenhdrs
|
|
# Clean up
|
|
echo "Cleaning up..."
|
|
rm -rfv ${TMPDIR}
|
|
|
|
echo "Tarball created: ${LOCALDIR}/ffmpeg-dlopen-headers.tar.xz"
|