summaryrefslogtreecommitdiff
path: root/libre/gst-plugins-bad-libre/PKGBUILD
blob: e96c047a893fcd4841e17f7310c31987f87d06f4 (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
# $Id: PKGBUILD 171693 2012-11-21 14:33:55Z heftig $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>

pkgbase=gst-plugins-bad
pkgname=gst-plugins-bad-libre
pkgver=1.0.3
pkgrel=1
pkgdesc='GStreamer Multimedia Framework Bad Plugins, without nonfree faac support'
arch=(
  i686
  x86_64
  mips64el
)
license=(
  LGPL
)
url="http://gstreamer.freedesktop.org/"
depends=(
  celt
  chromaprint
  curl
  faad2
  gst-plugins-base-libs
  libdca
  libdvdnav
  libgme
  libmms
  libmodplug
  mjpegtools
  mpg123
  opus
  soundtouch
  spandsp
)
makedepends=(
  libdvdread
  libexif
  libmpeg2
  libvdpau
  schroedinger
)
provides=(
  $pkgbase=$pkgver
)
conflicts=(
  $pkgbase
)
replaces=(
  $pkgbase 
)
options=(
  '!libtool'
  '!emptydirs'
)
source=(
  "$url/src/$pkgbase/$pkgbase-$pkgver.tar.xz"
)
sha256sums=(
  2eae746be0b4c7fa2f1e057c91bd36940d7c25593ab612b707904461360031f0
)

build() {
  cd $pkgbase-$pkgver
  sed -i '/AC_PATH_XTRA/d' configure.ac
  autoreconf
  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
    --disable-static --enable-experimental \
    --with-package-name='GStreamer Bad Plugins Libre (Parabola)' \
    --with-package-origin='http://www.parabolagnulinux.org/' \
    --with-gtk=3.0
  make
}

check() {
  cd $pkgbase-$pkgver
  make check
}

package() {
  cd $pkgbase-$pkgver
  make DESTDIR=$pkgdir install
}