summaryrefslogtreecommitdiff
path: root/libre/cinelerra-cv-libre/PKGBUILD
blob: c45c5f0fa2f433639320af00e8e5ebb8c043fd57 (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
79
80
81
82
83
84
85
86
# $Id$
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
# Maintainer (Parabola): André Silva <emulatorman@lavabit.com>

_pkgname=cinelerra-cv
pkgname=cinelerra-cv-libre
pkgver=2.2
_gitrel=2.2.0
pkgrel=14
epoch=1
pkgdesc="Professional video editing and compositing environment, without nonfree faac support"
arch=('x86_64' 'i686' 'mips64el')
url="http://cinelerra.org/"
license=('GPL')
depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
         'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
         'ffmpeg' 'faad2' 'openexr>=2.0.0')
makedepends=('git' 'nasm' 'mesa')
options=('!libtool')
replaces=$_pkgname
conflicts=$_pkgname
provides=$_pkgname=$pkgver
source=("$_pkgname::git+git://git.cinelerra.org/CinelerraCV.git#branch=rel$_gitrel"
        'v4l1_removal.patch'
        'ffmpeg_api.patch')
md5sums=('SKIP'
         'bfa85e20809429d88eba4ab83e569612'
         'b05ec2fb54e7d02f6167525417802111')

_confit() {
  ./configure --prefix=/usr \
              --with-buildinfo=git/recompile \
              --with-external-ffmpeg \
              --enable-opengl \
              --disable-esd $@
}

prepare() {
  cd "$srcdir/$_pkgname"

  # v4l1 removal patch
  patch -Np1 -i "$srcdir/v4l1_removal.patch"

  # new ffmpeg api patch
  patch -Np1 -i "$srcdir/ffmpeg_api.patch"

  # TODO: check if this is still needed (not sure what it does) --schiv
  sed -i -e '/Debian/d' admin/nasm

  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
  # TODO: kind of forgot about the specifics of this one, recheck --schiv
  sed -i '/\/X11R6/s///' configure.in
}

build() {
  cd "$srcdir/$_pkgname"

  # gcc 4.6 workaround
  export CFLAGS+=" -Wwrite-strings -D__STDC_CONSTANT_MACROS"
  export CPPFLAGS="$CFLAGS"

  # remove executable stack
  export LDFLAGS+=" -Wl,-z,noexecstack"

  ./autogen.sh

  # TODO: check if this is still needed (forgot why at all) --schiv
  if [ "$CARCH" = 'x86_64' ]; then
    _confit --disable-mmx
  else
    _confit --enable-mmx
  fi

  make
}

package() {
  cd "$srcdir/$_pkgname"

  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: