mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
919 B
Bash
28 lines
919 B
Bash
# Contributor: Fabian Schoelzel <myfirstname.mylastname@googlemail.com>
|
|
# Contributor: funkyou <spamopfer@nickname.berlin.de>
|
|
# Contributor: tardo <tardo@nagi-fanboi.net>
|
|
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
|
|
|
|
pkgname=mlt
|
|
pkgver=0.4.4
|
|
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' 'gtk2' 'ffmpeg' 'frei0r-plugins')
|
|
makedepends=('subversion')
|
|
conflicts=('mlt++<=0.3.8')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('0019996624b6a61ea27e07b4851ac765')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-gpl --disable-mmx \
|
|
--qimage-libdir=/usr/lib/ --qimage-includedir=/usr/include/Qt \
|
|
--avformat-swscale
|
|
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|