# Description: Command line utilities for transcoding various media formats. # URL: http://www.transcoding.org/cgi-bin/transcode # Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au # Packager: Martin Opel, mo at obbl-net dot de # Depends on: imagemagick avifile libdvdread libfame lzo mjpegtools mpeg2dec mplayer xorg-libxaw xorg-libxpm xorg-libxv name=transcode version=20070625 release=1 source=(http://romster.shortcircuit.net.au/crux/source/transcode-snapshot-$version.tar.bz2 \ http://dl.sourceforge.net/subtitleripper/subtitleripper-0.3-4.tgz) build() { cd transcode ./configure \ --prefix=/usr \ --disable-experimental \ --enable-alsa \ --enable-avifile \ --enable-ogg \ --enable-vorbis \ --enable-libdv \ --enable-libquicktime \ --enable-lzo \ --enable-a52 \ --enable-faac \ --enable-libxml2 \ --enable-mjpegtools \ --enable-libfame \ --enable-imagemagick \ --enable-netstream \ --enable-freetype2 \ --enable-libpostproc \ --enable-theora make make DESTDIR=$PKG install rm -r $PKG/usr/share # Subtitle support (Han Boetes) mkdir -p contrib/subrip cd contrib/subrip cp ../../../subtitleripper/* . sed -i 's|.*ppm.*||i' Makefile make clean all install -D srttool subtitle2pgm subtitle2vobsub $PKG/usr/bin }