mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
48 lines
1.6 KiB
Bash
48 lines
1.6 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgbase=gstreamer0.10-ugly
|
|
pkgname=('gstreamer0.10-ugly' 'gstreamer0.10-ugly-plugins')
|
|
pkgver=0.10.18
|
|
pkgrel=5
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
makedepends=('pkgconfig' 'gstreamer0.10-base' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 'libid3tag' 'libmad'
|
|
'libsidplay' 'libcdio' 'x264' 'opencore-amr')
|
|
url="http://gstreamer.freedesktop.org/"
|
|
options=(!libtool)
|
|
source=(${url}/src/gst-plugins-ugly/gst-plugins-ugly-${pkgver}.tar.bz2)
|
|
md5sums=('04a7009a4efea2844075949c111f5e4d')
|
|
|
|
build() {
|
|
cd "${srcdir}/gst-plugins-ugly-${pkgver}"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
|
--disable-static --enable-experimental \
|
|
--with-package-name="GStreamer Ugly Plugins (Chakra GNU/Linux)" \
|
|
--with-package-origin="http://www.chakra-project.org/"
|
|
|
|
make
|
|
sed -e 's/gst-libs gst ext/gst-libs gst/' -i Makefile
|
|
}
|
|
|
|
package_gstreamer0.10-ugly() {
|
|
pkgdesc="GStreamer Multimedia Framework Ugly plugin libraries"
|
|
depends=('gstreamer0.10-base>=0.10.28')
|
|
|
|
cd "${srcdir}/gst-plugins-ugly-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
package_gstreamer0.10-ugly-plugins() {
|
|
pkgdesc="GStreamer Multimedia Framework Ugly Plugins (gst-plugins-ugly)"
|
|
depends=("gstreamer0.10-ugly=${pkgver}" 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 'libid3tag' 'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr')
|
|
groups=('gstreamer0.10-plugins')
|
|
|
|
cd "${srcdir}/gst-plugins-ugly-${pkgver}"
|
|
make -C ext DESTDIR="${pkgdir}" install
|
|
}
|