48 lines
1.8 KiB
Text
48 lines
1.8 KiB
Text
# Template file for 'ffmpeg'
|
|
pkgname=ffmpeg
|
|
version=0.10.3
|
|
homepage="http://www.ffmpeg.org"
|
|
distfiles="${homepage}/releases/ffmpeg-${version}.tar.bz2"
|
|
depends="faad2 x264 xvidcore libvdpau"
|
|
makedepends="pkg-config perl>=0 yasm zlib-devel alsa-lib-devel libXfixes-devel libXext-devel libXvMC-devel faad2-devel lame-devel libtheora-devel libvorbis-devel x264-devel xvidcore-devel jack-devel SDL-devel libvpx-devel libva-devel libvdpau-devel"
|
|
revision=1
|
|
short_desc="Decoding, encoding and streaming software"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-3"
|
|
checksum=7d1ca0abc80e2f6161e2a48878b62a2e6d0301c231f91e7677b889ef048b931f
|
|
long_desc="
|
|
FFmpeg is the first complete and free Internet Live Audio and Video
|
|
Broadcasting solution. FFMpeg aims at being the command line tool to
|
|
handle audio and video. It is a three-in-one solution.
|
|
|
|
FFmpeg includes a soft VCR capable of encoding in many different
|
|
formats simultaneously, a streaming server for Netcasting multimedia
|
|
and is available under the GNU General Public License.
|
|
|
|
FFmpeg generates streaming files, in many popular formats
|
|
simultaneously, faster than any other solution."
|
|
|
|
subpackages="libavcodec libavdevice libavformat libavutil libavfilter"
|
|
subpackages="${subpackages} libpostproc libswscale libswresample $pkgname-devel"
|
|
|
|
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --disable-debug --enable-gpl \
|
|
--enable-version3 --enable-runtime-cpudetect \
|
|
--enable-libmp3lame --enable-libvorbis --enable-libxvid \
|
|
--enable-libx264 --enable-libvpx --enable-libtheora \
|
|
--enable-vdpau --enable-vaapi --enable-postproc \
|
|
--enable-shared --enable-x11grab \
|
|
--disable-libopencore_amrnb --disable-libopencore_amrwb \
|
|
--disable-libschroedinger --disable-libopenjpeg
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs}
|
|
make doc/ff{mpeg,play,server}.1
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install install-man
|
|
}
|