blob: 1da8717873fd0cbb85d2ef0ebe5f364ab6646259 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=gst-plugins-ugly1
pkgver=1.2.2
pkgrel=0
pkgdesc="GStreamer Multimedia Framework Ugly Plugins (gst-plugins-ugly)"
url="http://gstreamer.freedesktop.org/"
arch="all"
license="LGPL"
depends=
makedepends="
a52dec-dev
glib-dev
gst-plugins-base1-dev
gstreamer1-dev
lame-dev
libcdio-dev
libdvdread-dev
libid3tag-dev
libmad-dev
libmpeg2-dev
liboil-dev
orc-dev
x264-dev
"
source="http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-$pkgver.tar.xz"
subpackages="$pkgname-lang"
ldpath="/usr/lib/gstreamer-1.0"
_builddir="$srcdir"/gst-plugins-ugly-$pkgver
prepare() {
cd "$_builddir"
}
build() {
cd "$_builddir"
./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://alpinelinux.org/" \
|| return 1
make
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
find "$pkgdir" -name '*.la' -delete
}
md5sums="32f57ac91369bbb3299469cc418507d0 gst-plugins-ugly-1.2.2.tar.xz"
sha256sums="4b6aac272a5be0d68f365ef6fba0f829fc5c1d1d601bb4dd9e85f5289b2b56c3 gst-plugins-ugly-1.2.2.tar.xz"
sha512sums="1b16e680235a244bc31ac516f462021093d1a3dc86dac3c2698e49425b20130e0ee3ddd4e7afc11f936b1ae8b081c65a421517e7d9414b02295715ecf74c25d0 gst-plugins-ugly-1.2.2.tar.xz"
|