diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-15 06:30:23 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-15 06:30:23 +0000 |
commit | ae50530e4a676264b19bb053ee8ba0515f6f6061 (patch) | |
tree | 436b04d67f77f0698b8236e43e74b2825c8ae6ef /x11/gst-plugins-ugly | |
parent | 11cd0c802f5e8bbfa07b495d446bef8fadc987bd (diff) | |
download | aports-ae50530e4a676264b19bb053ee8ba0515f6f6061.tar.bz2 aports-ae50530e4a676264b19bb053ee8ba0515f6f6061.tar.xz |
x11/gst-plugins-ugly: new aport
GStreamer Multimedia Framework Ugly Plugins (gst-plugins-ugly)
http://gstreamer.freedesktop.org/
Diffstat (limited to 'x11/gst-plugins-ugly')
-rw-r--r-- | x11/gst-plugins-ugly/APKBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/x11/gst-plugins-ugly/APKBUILD b/x11/gst-plugins-ugly/APKBUILD new file mode 100644 index 0000000000..2901804090 --- /dev/null +++ b/x11/gst-plugins-ugly/APKBUILD @@ -0,0 +1,26 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=gst-plugins-ugly +pkgver=0.10.11 +pkgrel=0 +pkgdesc="GStreamer Multimedia Framework Ugly Plugins (gst-plugins-ugly)" +url="http://gstreamer.freedesktop.org/" +license="LGPL" +depends= #"gstreamer0.10-ugly>=0.10.11 libdvdread>=4.1.3 lame>=3.98.2 libmpeg2>=0.5.1 a52dec>=0.7.4 libid3tag>=0.15.1b libmad>=0.15.1b libsidplay>=1.36.59 libcdio>=0.81" +makedepends="pkgconfig lame-dev libmpeg2-dev a52dec-dev libid3tag-dev + libmad-dev glib-dev liboil-dev gstreamer-dev gst-plugins-base-dev" +source="http://gstreamer.freedesktop.org//src/gst-plugins-ugly/gst-plugins-ugly-$pkgver.tar.bz2" + +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --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/" || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 +} +md5sums="dfe2e201e066a3e86a9598b6769d9739 gst-plugins-ugly-0.10.11.tar.bz2" |