mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 21:57:22 +08:00
23 lines
707 B
Bash
23 lines
707 B
Bash
|
# $Id: PKGBUILD 72132 2010-03-12 11:08:07Z ibiru $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gstreamer0.10-python
|
||
|
pkgver=0.10.18
|
||
|
pkgrel=1
|
||
|
pkgdesc="Python bindings for GStreamer 0.10"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('LGPL')
|
||
|
url="http://gstreamer.freedesktop.org/"
|
||
|
depends=('pygobject>=2.20.0' 'gstreamer0.10-base>=0.10.28')
|
||
|
makedepends=('pkgconfig')
|
||
|
options=('!libtool')
|
||
|
source=(http://gstreamer.freedesktop.org/src/gst-python/gst-python-${pkgver}.tar.bz2)
|
||
|
sha256sums=('21a6a13736bd4c2cdcbde7d9c2791f1e47085d161eda84f8ee901bb744ddb897')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/gst-python-${pkgver}"
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|