mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 15:37:14 +08:00
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
# contributor Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gstreamer
|
|
pkgver=1.0.3
|
|
pkgrel=1
|
|
pkgdesc="GStreamer Multimedia Framework"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://gstreamer.freedesktop.org/"
|
|
depends=('libxml2' 'glib2')
|
|
optdepends=('sh: feedback script')
|
|
makedepends=('intltool' 'pkgconfig' 'gobject-introspection')
|
|
options=('!libtool')
|
|
source=(${url}/src/gstreamer/gstreamer-${pkgver}.tar.xz)
|
|
sha256sums=('69ac49e2ae9cd2ea5f789de641aeb338bb8731961acfced08ae1c76a797fe6b1')
|
|
|
|
build() {
|
|
cd "${srcdir}/gstreamer-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib \
|
|
--with-package-name="GStreamer (Chakra GNU/Linux)" \
|
|
--with-package-origin="http://www.chakra-project.org/" \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/gstreamer-${pkgver}"
|
|
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/gstreamer-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|