diff options
Diffstat (limited to 'abs/extra-testing/transcode/PKGBUILD')
-rw-r--r-- | abs/extra-testing/transcode/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/abs/extra-testing/transcode/PKGBUILD b/abs/extra-testing/transcode/PKGBUILD index 4198a79..89f2300 100644 --- a/abs/extra-testing/transcode/PKGBUILD +++ b/abs/extra-testing/transcode/PKGBUILD @@ -1,30 +1,32 @@ -# $Id: PKGBUILD 15655 2008-10-16 19:04:55Z tobias $ +# $Id: PKGBUILD 24607 2009-01-19 05:27:57Z eric $ # Contributor: Sarah Hay <sarahhay@mb.sympatico.ca> # Maintainer: roberto <roberto@archlinux.org> pkgname=transcode _sripver=0.3-4 -pkgver=1.0.6 +pkgver=1.1.0 pkgrel=1 pkgdesc="Transcode is a video/DVD ripper and encoder for the terminal/console." arch=(i686 x86_64) license=('GPL2') -depends=('imagemagick>=6.2.6' 'lzo2' 'libdv' 'libdvdread' 'ffmpeg' 'mjpegtools' \ - 'xvidcore' 'libmpeg2' 'libtheora' 'libxaw' 'x264>=20080625' 'libxml2' \ - 'libxv') +depends=('imagemagick>=6.2.6' 'lzo2' 'libdv' 'libdvdread' 'ffmpeg>=20081220' 'mjpegtools' \ + 'xvidcore' 'libmpeg2' 'libtheora' 'libxaw' 'x264>=20090108' 'libxml2' \ + 'libxv' 'a52dec') makedepends=('nasm') install=transcode.install url="http://transcoding.org" options=(!libtool !makeflags) source=(http://fromani.exit1.org/${pkgname}-${pkgver}.tar.bz2 \ - http://easynews.dl.sourceforge.net/sourceforge/subtitleripper/subtitleripper-${_sripver}.tgz) -md5sums=('7c3a341b0e4540e34ef50c66b0ab751d' 'c0bd49a88f667c68c4430ad25bbed510') + http://downloads.sourceforge.net/sourceforge/subtitleripper/subtitleripper-${_sripver}.tgz) +md5sums=('5ca205e32b546402a48ea8004a7b3232' 'c0bd49a88f667c68c4430ad25bbed510') build() { cd $startdir/src/$pkgname-$pkgver sed -i 's|ffmpeg/avcodec.h|libavcodec/avcodec.h|' import/{import_ffmpeg.c,decode_lavc.c} || return 1 sed -i 's|ffmpeg/avcodec.h|libavcodec/avcodec.h|' export/{aud_aux.c,export_ffmpeg.c,ffmpeg_cfg.h} || return 1 sed -i 's|ffmpeg/avcodec.h|libavcodec/avcodec.h|' filter/filter_resample.c || return 1 + autoconf || return 1 + # building from here ./configure --prefix=/usr \ --enable-sse=no --enable-sse2=no --enable-altivec=no --enable-mmx \ @@ -48,7 +50,8 @@ build() { make DESTDIR=$startdir/pkg install ############################################################################## # this imports the latest subtitleripper sources and replaces the internal - rm -rf $startdir/src/$pkgname-$pkgver/contrib/subrip +### rm -rf $startdir/src/$pkgname-$pkgver/contrib/subrip + mkdir $startdir/src/$pkgname-$pkgver/contrib tar xzf ../subtitleripper-$_sripver.tgz -C $startdir/src/$pkgname-$pkgver/contrib mv $startdir/src/$pkgname-$pkgver/contrib/subtitleripper \ $startdir/src/$pkgname-$pkgver/contrib/subrip |