mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 13:57:18 +08:00
36 lines
1.1 KiB
Bash
36 lines
1.1 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>
|
||
|
|
||
|
pkgname=gstreamer0.10-pulse
|
||
|
pkgver=0.10.22
|
||
|
pkgrel=1
|
||
|
pkgdesc="A GStreamer 0.10 plugin for the PulseAudio sound server"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('LGPL')
|
||
|
makedepends=('pkgconfig')
|
||
|
url="http://gstreamer.freedesktop.org/"
|
||
|
depends=('gstreamer0.10-base>=0.10.29' 'libpulse>=0.9.21')
|
||
|
optdepends=('pulseaudio: pulseaudio support')
|
||
|
options=(!libtool !emptydirs)
|
||
|
groups=(pulseaudio)
|
||
|
source=(${url}/src/gst-plugins-good/gst-plugins-good-${pkgver}.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/gst-plugins-good-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
|
||
|
--disable-static --enable-experimental \
|
||
|
--with-package-name="GStreamer Good Plugins (Chakra GNU/Linux)" \
|
||
|
--with-package-origin="http://www.chakra-project.org/"
|
||
|
|
||
|
cd ext/pulse && make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "${srcdir}/gst-plugins-good-${pkgver}/ext/pulse"
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|
||
|
|
||
|
md5sums=('4804aaa32044af9846914304991cc9d6')
|