mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 19:37:13 +08:00
35 lines
1.0 KiB
Bash
35 lines
1.0 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
|
|
|
|
pkgname=mlt
|
|
pkgver=0.5.10
|
|
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')
|
|
optdepends=('jack')
|
|
makedepends=('subversion')
|
|
conflicts=('mlt++<=0.3.8')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('6869ed138193cc0e3113e4e7ac341e14')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-gpl --disable-mmx \
|
|
--qimage-libdir=/usr/lib/ --qimage-includedir=/usr/include/Qt \
|
|
--avformat-swscale --disable-gtk2
|
|
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
} |