Overview
| Comment: | Added start of ffmpeg build recipe | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | packages | 
| Files: | files | file ages | folders | 
| SHA1: | 651b8c103cceeca7613cd8304cae95a2 | 
| User & Date: | rkeene on 2014-11-20 21:00:12 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2015-03-20 | ||
| 15:18 | Added Fossil package check-in: 346731593e user: rkeene tags: packages | |
| 2014-11-20 | ||
| 21:00 | Added start of ffmpeg build recipe check-in: 651b8c103c user: rkeene tags: packages | |
| 20:59 | Fixed bug where paths were added multiple times check-in: fc15516eae user: rkeene tags: packages | |
Changes
Modified pkgs/ffmpeg from [f30f494113] to [dc320025c3].
| 1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | + + + + + + + + | 
#! /usr/bin/env bash
version='2.4.3'
url="https://www.ffmpeg.org/releases/ffmpeg-${version}.tar.bz2"
domain=rkeene.org
sha256='ca5c3e3c0e4f9e43b9dceafceb866acb1ea575cb9f2d94e0d959303e4fc4e602'
require=(zlib@core.appfs.rkeene.org readline@core.appfs.rkeene.org)
make_extra=(-j10)
function configure() {
	configure_gcc
	CC="$(echo "${CC}" | sed 's@ -nostdinc @ @g')"
	./configure --prefix="${prefix}" --cc="${CC} ${CPPFLAGS}" --extra-cflags="${CFLAGS}" --host-cppflags="${CPPFLAGS}" --extra-ldflags="${LDFLAGS}" --enable-shared --enable-pic --enable-rpath --enable-x11grab --enable-gpl || return 1
	echo '# Ignore: DESTDIR' >> Makefile
}
 |