mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 06:44:36 +08:00
75 lines
2.7 KiB
Bash
75 lines
2.7 KiB
Bash
#
|
|
# Platform packages of Chakra Project, part of chakraos.org
|
|
#
|
|
# maintainer almack
|
|
|
|
pkgbase=('gstreamer0.10-base')
|
|
pkgname=('gstreamer0.10-base' 'gstreamer0.10-base-plugins')
|
|
pkgver=0.10.36
|
|
pkgrel=9
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
makedepends=('pkgconfig' 'gstreamer0.10>=0.10.36' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 'libvisual' 'libvorbis' 'libtheora' 'pango' 'gobject-introspection' 'git')
|
|
options=(!emptydirs)
|
|
url="http://gstreamer.freedesktop.org/"
|
|
source=("git://anongit.freedesktop.org/gstreamer-sdk/gst-plugins-base#commit=48d5966f12d4e6b71c96db0600cf76ef0ef14b3a"
|
|
fix-crash-0-byte-ogg.patch
|
|
colorbalance-fix-abi.patch
|
|
revert-decodebin-playbin-removal.patch
|
|
videoscale-fix-negotiation.patch
|
|
ayuv64-lanczos.patch
|
|
gstaudio-symbols.patch)
|
|
sha256sums=('SKIP'
|
|
'a6a01035ea9627737f9c17f72919857ed43ccc7c2cb08b645b43ed89f78d0f4f'
|
|
'7442c5c68068428b8c7ac1d3825ce29f1bb152b75b77047b9e806c7d322b780c'
|
|
'ba20659fafea73db016ddaecd128f12087e0957ce35cf2c3ce29f72c51551ef3'
|
|
'ae27f7be58997217f67898b37b138a485c203389e56b65e6b31c23f769ef39ca'
|
|
'3792dfe80c69f51c0db98533e8fb16707b5dd2ee6933ea6098583af873ceb44a'
|
|
'56e7a988df39d2ec4befa265536ad8c30d3c8d18d136cebef64e8d6baac1abae')
|
|
|
|
prepare() {
|
|
cd gst-plugins-base
|
|
sed -i -e '/AC_PATH_XTRA/d' -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.ac
|
|
patch -Np1 -i ../fix-crash-0-byte-ogg.patch
|
|
patch -Np1 -i ../colorbalance-fix-abi.patch
|
|
patch -Np1 -i ../ayuv64-lanczos.patch
|
|
patch -Np1 -i ../videoscale-fix-negotiation.patch
|
|
patch -Np1 -i ../gstaudio-symbols.patch
|
|
patch -Np1 -R -i ../revert-decodebin-playbin-removal.patch
|
|
}
|
|
|
|
build() {
|
|
cd gst-plugins-base
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
|
--disable-static --enable-experimental --disable-gnome_vfs --disable-gtk-doc \
|
|
--with-package-name="GStreamer Base Plugins (Chakra GNU/Linux)" \
|
|
--with-package-origin="http://www.chakraos.org/"
|
|
make
|
|
sed -e 's/^SUBDIRS_EXT =.*/SUBDIRS_EXT =/' -i Makefile
|
|
}
|
|
|
|
check() {
|
|
cd gst-plugins-base
|
|
make check
|
|
}
|
|
|
|
package_gstreamer0.10-base() {
|
|
pkgdesc="GStreamer Multimedia Framework Base plugin libraries"
|
|
depends=('gstreamer0.10>=0.10.36' 'orc' 'libxv')
|
|
|
|
cd gst-plugins-base
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
package_gstreamer0.10-base-plugins() {
|
|
pkgdesc="GStreamer Multimedia Framework Base Plugins (gst-plugins-base)"
|
|
depends=("gstreamer0.10-base=${pkgver}" 'alsa-lib' 'cdparanoia' 'libvisual' 'libvorbis' 'libtheora' 'pango')
|
|
groups=('gstreamer0.10-plugins')
|
|
|
|
cd gst-plugins-base
|
|
make -C gst-libs DESTDIR="${pkgdir}" install
|
|
make -C ext DESTDIR="${pkgdir}" install
|
|
make -C gst-libs DESTDIR="${pkgdir}" uninstall
|
|
}
|