summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7e0653e936a54ea1a395f815d8b317597f4f0d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Maintainer: Muflone http://www.muflone.com/contacts/english/

pkgname=libavutil-52
pkgver=2.3.6
pkgrel=4
pkgdesc="Compatibility package for ffmpeg to provide versions 52 of libavutil not anymore provided by the ffmpeg package"
arch=('x86_64')
url="http://ffmpeg.org/"
license=('GPL')
makedepends=('yasm' 'gsm' 'lame' 'opencore-amr' 'openjpeg' 'opus'  'rtmpdump'
             'schroedinger' 'speex' 'v4l-utils' 'xvidcore' 'libpulse' 'libvpx'
             'libx264' 'libtheora' 'libvdpau' 'libass' 'libbluray' 'libmodplug'
             'libxfixes')
provides=('libavutil.so')
source=("http://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.bz2"
        "http://ffmpeg.org/releases/ffmpeg-${pkgver}.tar.bz2.asc")
sha256sums=('cf1be1c5c3973b8db16b6b6e8e63a042d414fb5d47d3801a196cbba21a0a624a'
            'SKIP')
validpgpkeys=('FCF986EA15E6E293A5644F10B4322F04D67658D8')

build() {
  cd "ffmpeg-${pkgver}"

  ./configure \
    --prefix=/usr \
    --incdir="/usr/include" \
    --shlibdir="/usr/lib" \
    --libdir="/usr/lib" \
    --disable-debug \
    --disable-static \
    --enable-dxva2 \
    --disable-fontconfig \
    --enable-gpl \
    --enable-libass \
    --enable-libbluray \
    --enable-libfreetype \
    --enable-libgsm \
    --enable-libmodplug \
    --enable-libmp3lame \
    --enable-libopencore_amrnb \
    --enable-libopencore_amrwb \
    --enable-libopenjpeg \
    --enable-libopus \
    --enable-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 \
    --disable-doc \
    --disable-programs \
    --disable-avcodec \
    --disable-avdevice \
    --disable-avformat \
    --disable-swscale \
    --disable-swresample \
    --disable-postproc \
    --disable-avfilter
}

package() {
  cd "ffmpeg-${pkgver}"
  install -d -m 755 "${pkgdir}/usr/lib"
  make DESTDIR="${pkgdir}" install-libs
  # Remove symlink which conflicts with ffmpeg
  rm -f "${pkgdir}/usr/lib/libavutil.so"
}