diff options
Diffstat (limited to 'abs/extra/ffmpeg-compat/PKGBUILD')
-rw-r--r-- | abs/extra/ffmpeg-compat/PKGBUILD | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/abs/extra/ffmpeg-compat/PKGBUILD b/abs/extra/ffmpeg-compat/PKGBUILD deleted file mode 100644 index 5b5879f..0000000 --- a/abs/extra/ffmpeg-compat/PKGBUILD +++ /dev/null @@ -1,85 +0,0 @@ -# $Id$ -# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> -# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Ionut Biru <ibiru@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> -# Contributor: Paul Mattal <paul@archlinux.org> - -pkgname=ffmpeg-compat -pkgver=0.10.16 -pkgrel=4 -epoch=1 -pkgdesc='Complete and free Internet live audio and video broadcasting solution' -arch=('i686' 'x86_64') -url='http://ffmpeg.org/' -license=('GPL') -depends=( - 'alsa-lib' 'bzip2' 'gsm' 'lame' 'libass' 'libmodplug' - 'libtheora' 'libva' 'opencore-amr' 'openjpeg' 'rtmpdump' 'schroedinger' - 'sdl' 'speex' 'v4l-utils' 'xvidcore' 'zlib' - 'libvorbisenc.so' 'libvorbis.so' 'libvpx.so' 'libx264.so' -) -makedepends=('libvdpau' 'yasm' 'x264') -provides=('libavcodec.so' 'libavutil.so' 'libpostproc.so' 'libswscale.so' - 'libswresample.so' 'libavformat.so' 'libavfilter.so' 'libavdevice.so') -source=(http://ffmpeg.org/releases/ffmpeg-$pkgver.tar.bz2{,.asc} - ffmpeg-0.10-libvpx-1.5.patch) -validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8') # ffmpeg-devel -sha256sums=('e77823cbd58dfdb61f88059476070bc432d80e3821c14abcf804ef709d2f3fd1' - 'SKIP' - 'd6797973889582b82b7c81b91a39c222e09b5ccf8a7e031c364ae1e9275a497d') - - -prepare() { - cd ffmpeg-$pkgver - patch -p1 -i ../ffmpeg-0.10-libvpx-1.5.patch -} - -build() { - cd ffmpeg-$pkgver - - CFLAGS+=" -I/usr/include/openjpeg-1.5" \ - ./configure \ - --prefix=/usr \ - --incdir=/usr/include/ffmpeg-compat \ - --libdir=/usr/lib/ffmpeg-compat \ - --shlibdir=/usr/lib/ffmpeg-compat \ - --disable-debug \ - --disable-static \ - --enable-gpl \ - --enable-libass \ - --enable-libfreetype \ - --enable-libgsm \ - --enable-libmodplug \ - --enable-libmp3lame \ - --enable-libopencore_amrnb \ - --enable-libopencore_amrwb \ - --enable-libopenjpeg \ - --disable-libpulse \ - --enable-librtmp \ - --enable-libschroedinger \ - --enable-libspeex \ - --enable-libtheora \ - --enable-libv4l2 \ - --enable-libvorbis \ - --enable-libvpx \ - --enable-libx264 \ - --enable-libxvid \ - --enable-postproc \ - --enable-runtime-cpudetect \ - --enable-shared \ - --enable-vdpau \ - --enable-version3 \ - --enable-x11grab - - make -} - -package() { - cd ffmpeg-$pkgver - make DESTDIR="$pkgdir" install - rm -rf "$pkgdir"/usr/{bin,share} - - install -dm755 "$pkgdir"/etc/ld.so.conf.d/ - echo -e '/usr/lib/\n/usr/lib/ffmpeg-compat/' > "$pkgdir"/etc/ld.so.conf.d/$pkgname.conf -} |