blob: 601323f76569a9c2673e64e9ea111fbb9c084b35 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gst-plugins-ugly0.10
pkgver=0.10.19
pkgrel=6
pkgdesc="GStreamer Multimedia Framework Ugly Plugins (gst-plugins-ugly)"
url="https://gstreamer.freedesktop.org/"
arch="all"
license="LGPL-2.1-or-later"
replaces="gst-plugins-ugly"
makedepends="lame-dev libmpeg2-dev a52dec-dev libid3tag-dev libmad-dev
glib-dev orc-dev gstreamer0.10-dev gst-plugins-base0.10-dev
x264-dev libcdio-dev libcdio-paranoia-dev"
source="https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-$pkgver.tar.bz2
cdio-cd-text-api.patch"
subpackages="$pkgname-lang"
builddir="$srcdir"/gst-plugins-ugly-$pkgver
prepare() {
update_config_sub
default_prepare
}
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--enable-experimental \
--with-package-name="GStreamer Ugly Plugins (Alpine Linux)" \
--with-package-origin="http://www.alpinelinux.org/"
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="27ae79653f73a143b1dfd864b16b8f1a43d54538a5802d937cb29ce82d5681604c2b3c3fe68c7debf4a319b09bee880a5a95fc48dce83c6cb9753397a1e300d3 gst-plugins-ugly-0.10.19.tar.bz2
16b65f3140554212bb5454b0bfdc3d5a27627076aabab3ed23e124210a18f41888b488afa1a74ecc9939213cbc61dae1ff6a9055f1929f1803208e2414792de8 cdio-cd-text-api.patch"
|