mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:37:13 +08:00
41 lines
966 B
Bash
41 lines
966 B
Bash
# maintainer abveritas@chakra-project.org
|
|
# contributor Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gstreamer
|
|
pkgver=1.0.5
|
|
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)
|
|
md5sums=('644d535708056b4e8632cbe599768ad7')
|
|
|
|
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
|
|
}
|