source: extensions/gsdl-video/trunk/build-srcpack/packages/CASCADE-MAKE/FFMPEG.sh@ 18951

Last change on this file since 18951 was 18951, checked in by davidb, 15 years ago

Further iteration of scripts to compile up necessary support packages for video extension

File size: 1.0 KB
Line 
1#!/bin/bash
2
3package=ffmpeg
4
5# If changing this version number, don't forget to update FFKEYFRAME.sh
6version=-jul21-2007
7
8
9
10progname=$0
11
12source ../../cascade-make/bin/script/test-setup.bash
13source ../../cascade-make/lib/cascade-lib.bash
14
15prefix=$GEXTVIDEO_INSTALLED/$GSDLOS
16
17opt_run_untar $force_untar $auto_untar $package $version
18if [ -d $package ] ; then
19 echo "Moving $package -> $package$version"
20 /bin/mv $package $package$version
21fi
22
23opt_run_configure $force_config $auto_config $package $version "$prefix" \
24 "--enable-shared --enable-static --enable-swscaler \
25 --enable-libmp3lame --enable-liba52 --enable-gpl \
26 --enable-libogg --enable-libvorbis \
27 --enable-libfaac --enable-libfaad \
28 --extra-ldflags=-L$prefix/lib/ \
29 --extra-cflags=-I$prefix/include"
30
31
32opt_run_make $compile $package $version
33opt_run_make $install $package $version "install"
34opt_run_make $clean $package $version "clean"
35opt_run_make $distclean $package $version "distclean"
36
37opt_run_tarclean $tarclean $package $version
38
39
Note: See TracBrowser for help on using the repository browser.