3d651b1200
- 1.1.5. - Include GSM 06.10 decoder (#228186). - Re-enable CACA support.
77 lines
2.2 KiB
Bash
Executable File
77 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$1" -o $# -ne 1 ]; then
|
|
echo "Usage: $0 <xine-version>"
|
|
exit 2
|
|
fi
|
|
|
|
version=$1
|
|
tarball="xine-lib-$version.tar.bz2"
|
|
dir="xine-lib-$version"
|
|
modtarball="xine-lib-$version-pruned.tar.bz2"
|
|
|
|
|
|
if [ ! -f $tarball ]; then
|
|
echo "Can't find $tarball !"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Uncompressing $tarball..."
|
|
rm -rf $dir
|
|
tar -xjf $tarball
|
|
cd $dir
|
|
|
|
# Main libraries
|
|
for remove in libfaad libffmpeg libmad libmpeg2 dxr3 libspudec libspucmml libspucc liba52 libdts; do
|
|
echo "removing src/$remove..."
|
|
rm -rf src/$remove
|
|
sed -i -e "/$remove/d" src/Makefile.am
|
|
sed -i -e "/^src\/$remove/d" configure.ac
|
|
done
|
|
# Input plugin libraries
|
|
for remove in libdvdnav vcd; do
|
|
echo "removing src/input/$remove..."
|
|
rm -rf src/input/$remove
|
|
sed -i -e "s/SUBDIRS = \(.*\)${remove}\(.*\)/SUBDIRS = \1\2/g" src/input/Makefile.am
|
|
sed -i -e "/^src\/input\/$remove/d" configure.ac
|
|
done
|
|
# Input plugins
|
|
for p in dvd vcd mms; do
|
|
echo "removing $p input plugin..."
|
|
# Remove sources
|
|
for sourcefile in `awk '/^xineplug_inp_'$p'_la_SOURCES/ { $1=""; $2=""; print $0}' src/input/Makefile.am`; do
|
|
if [ "`grep -c $sourcefile src/input/Makefile.am`" -le 1 ]; then # if this file is only used for this plugin
|
|
rm -f src/input/$sourcefile
|
|
fi
|
|
done
|
|
# Remove from Makefile
|
|
sed -i -e "/xineplug_inp_$p/d" src/input/Makefile.am
|
|
done
|
|
# Demuxers
|
|
for p in mpeg mpeg_block mpeg_ts mpeg_elem mpeg_pes yuv4mpeg2; do
|
|
echo "removing $p demuxer..."
|
|
[ -f src/demuxers/demux_$p.c ] && rm -f src/demuxers/demux_$p.c
|
|
sed -i -e "/xineplug_dmx_$p/d" src/demuxers/Makefile.am
|
|
done
|
|
# Postprocessors
|
|
echo "removing planar and deinterlace postprocessors..."
|
|
sed -i -e 's/deinterlace //g' src/post/Makefile.am # see comments in speedy.c
|
|
sed -i -e 's/planar //g' src/post/Makefile.am # requires libpostproc
|
|
sed -i -e '/post\/\(deinterlace\|planar\)/d' configure.ac
|
|
rm -rf src/post/{deinterlace,planar}
|
|
# NSF decoder
|
|
echo "removing NSF decoder..."
|
|
rm -rf src/libxineadec/{nosefart,nsf.c}
|
|
sed -i -e '/^xineplug_decode_nsf_la/,/^\s*$/d' \
|
|
-e /xineplug_decode_nsf/d \
|
|
-e 's/ nosefart//' \
|
|
src/libxineadec/Makefile.am
|
|
sed -i -e /nosefart/d configure.ac
|
|
|
|
# All clean !
|
|
|
|
cd ..
|
|
echo "Generating $modtarball..."
|
|
tar -cjf $modtarball $dir
|
|
rm -rf $dir
|