blob: 47b627efbccc788baa86bb3383fd113ff11412ad (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gst-plugins-bad
pkgver=1.14.0
pkgrel=1
pkgdesc="GStreamer bad plugins"
url="https://gstreamer.freedesktop.org/"
arch="all"
license="GPL-2.0-or-later LGPL-2.0-or-later"
replaces="gst-plugins-bad1"
options="!check" # most fail because: XDG_RUNTIME_DIR not set in the env.
makedepends="
alsa-lib-dev
bluez-dev
bzip2-dev
curl-dev
faac-dev
faad2-dev
flite-dev
glib-dev
glu-dev
gsm-dev
gst-plugins-base-dev
gstreamer-dev
libdc1394-dev
libexif-dev
libmms-dev
libmodplug-dev
liboil-dev
libressl-dev>=2.7.0
librsvg-dev
libvdpau-dev
libx11-dev
mesa-dev
neon-dev
orc-dev
directfb-dev
spandsp-dev
libwebp-dev
x265-dev
libass-dev
libsrtp-dev
orc-compiler
"
subpackages="$pkgname-lang $pkgname-dev $pkgname-doc"
source="https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-$pkgver.tar.xz
libressl270-dtsl_method.patch"
ldpath="/usr/lib/gstreamer-1.0"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--enable-experimental \
--disable-fatal-warnings \
--with-package-name="GStreamer Bad Plugins (Alpine Linux)" \
--with-package-origin="http://alpinelinux.org/"
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
doc() {
default_doc
replaces="${pkgname}1-doc"
}
sha512sums="3f64dc428e2c1890f05d2c718215ff4b78a8262255ea61e746b436dc9ce1d3e0671db9cf3640f9a7453434297cac3a134272de7785818dfc5a6011ce8584842f gst-plugins-bad-1.14.0.tar.xz
82106a8fa7ac01c63c3298c33a3b6177a4115f380d475634ea8ba4c67654f96275ab4b35eb4ea712a997165fefa7e9b65fd6b14ed3cea478c200d7e8d61423c4 libressl270-dtsl_method.patch"
|