mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 14:37:15 +08:00
61 lines
1.8 KiB
Bash
61 lines
1.8 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of www.chakra-project.org
|
|
#
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: A Boersma (abveritas) <abveritas@chakra-project.org>
|
|
|
|
pkgbase=mlt
|
|
pkgname=('mlt' 'mlt-python-bindings')
|
|
pkgver=0.9.0
|
|
pkgrel=3
|
|
pkgdesc="An open source multimedia framework"
|
|
arch=('x86_64')
|
|
url="http://www.mltframework.org"
|
|
license=('GPL')
|
|
depends=('sdl_image' 'libsamplerate' 'libdv' 'qt' 'sox' 'libxml2' 'ffmpeg'
|
|
'frei0r-plugins' 'swig' 'python2')
|
|
optdepends=('jack')
|
|
makedepends=('subversion')
|
|
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('1cd2d73f3ffe77a43980e99aaa4ea06c')
|
|
|
|
build() {
|
|
# mlt
|
|
cd "${srcdir}/mlt-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-gpl \
|
|
--enable-gpl3 \
|
|
--qimage-libdir=/usr/lib/ \
|
|
--qimage-includedir=/usr/include/Qt \
|
|
--avformat-vdpau \
|
|
--disable-gtk2 \
|
|
--avformat-swscale
|
|
make
|
|
|
|
# mlt python bindings
|
|
cd "${srcdir}/mlt-${pkgver}/src/swig/python"
|
|
sed -i 's_path=`which python_path=`which python2_' build
|
|
sed -i 's_`python -c_`python2 -c_' build
|
|
sed -i 's#python-config#python2-config#' build
|
|
./build
|
|
}
|
|
|
|
package_mlt() {
|
|
depends=('sdl_image' 'libsamplerate' 'libdv' 'sox' 'libxml2' 'ffmpeg>=0.11' 'frei0r-plugins')
|
|
optdepends=('jack' 'libexif' 'qt' 'ladspa')
|
|
|
|
cd "${srcdir}/mlt-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
package_mlt-python-bindings() {
|
|
depends=('python2' 'mlt>=0.8')
|
|
|
|
cd "$srcdir/mlt-$pkgver/src/swig/python"
|
|
mkdir -p "${pkgdir}/usr/lib/python2.7/"
|
|
install -m0755 mlt.py "${pkgdir}/usr/lib/python2.7/"
|
|
install -m0755 _mlt.so "${pkgdir}/usr/lib/python2.7/"
|
|
install -m0755 mlt_wrap.o "${pkgdir}/usr/lib/python2.7/"
|
|
}
|