mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
67 lines
1.9 KiB
Bash
67 lines
1.9 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>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
# NOTE: Disabled the gtk2 module so no gtk-preview
|
|
|
|
pkgbase=mlt
|
|
pkgname=('mlt' 'mlt-python-bindings')
|
|
pkgver=0.7.6
|
|
pkgrel=1
|
|
pkgdesc="An open source multimedia framework"
|
|
arch=('i686' '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')
|
|
conflicts=('mlt++<=0.3.8')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('105969a63339da2f8ce4ddce1652c9e7')
|
|
|
|
build() {
|
|
# mlt
|
|
cd $srcdir/mlt-$pkgver
|
|
|
|
# [ $CARCH == "i686" ] && SSE2=--disable-sse2 || SSE2=
|
|
SSE2=--disable-sse2
|
|
|
|
msg "SSE2=$SSE2"
|
|
./configure --prefix=/usr --enable-gpl \
|
|
--qimage-libdir=/usr/lib/ --qimage-includedir=/usr/include/Qt \
|
|
--avformat-vdpau \
|
|
--disable-gtk2 \
|
|
--avformat-swscale $SSE2
|
|
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' 'frei0r-plugins')
|
|
optdepends=('jack' 'libexif' 'qt' "ladspa")
|
|
conflicts=('mlt++<=0.3.8')
|
|
|
|
cd $srcdir/mlt-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
|
|
package_mlt-python-bindings() {
|
|
depends=('python2' 'mlt')
|
|
|
|
cd $srcdir/mlt-$pkgver/src/swig/python
|
|
mkdir -p $pkgdir/usr/lib/python2.7/
|
|
install -m755 mlt.py $pkgdir/usr/lib/python2.7/
|
|
install -m755 _mlt.so $pkgdir/usr/lib/python2.7/
|
|
install -m755 mlt_wrap.o $pkgdir/usr/lib/python2.7/
|
|
} |