blob: f32f986dd46069bd4a1a164a39a13ad0637325d7 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gst-plugins-base1
pkgver=1.5.2
pkgrel=0
pkgdesc="GStreamer Multimedia Framework Base Plugins"
url="http://gstreamer.freedesktop.org/"
arch="all"
license="GPL LGPL"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
depends=
depends_dev="gstreamer1-dev glib-dev"
makedepends="$depends_dev
alsa-lib-dev
cdparanoia-dev
expat-dev
gtk+3.0-dev
libice-dev
libogg-dev
liboil-dev
libsm-dev
libtheora-dev
libvorbis-dev
libxv-dev
orc-dev
perl
"
source="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-$pkgver.tar.xz"
ldpath="/usr/lib/gstreamer-1.0"
_builddir="$srcdir"/gst-plugins-base-$pkgver
prepare() {
cd "$_builddir"
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-experimental \
--disable-fatal-warnings \
--with-default-audiosink=alsasink \
--with-package-name="GStreamer Base Plugins (Alpine Linux)" \
--with-package-origin="http://alpinelinux.org/" \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.a "$pkgdir"/usr/lib/gstreamer*/*.a
}
md5sums="6d179b69e528786aa3b5f682437567f1 gst-plugins-base-1.5.2.tar.xz"
sha256sums="a7d65acfb6760eb7f23e1b635a13f643406541f9350a01a8bd84246219db0071 gst-plugins-base-1.5.2.tar.xz"
sha512sums="98bcd50d8fb445c0da60a2f80c37e96d7fa8415c3dd1a2a4d2a298bc47d9782726cfdf8c34fcdaa65927c4682a45a5d6369452c74b8804242b0c62ba60545f8f gst-plugins-base-1.5.2.tar.xz"
|