mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
27 lines
717 B
Bash
27 lines
717 B
Bash
|
# $Id: PKGBUILD 3718 2009-10-08 07:11:43Z mherych $
|
||
|
# Maintainer: Mateusz Herych <heniekk@gmail.com>
|
||
|
|
||
|
pkgname=libquicktime
|
||
|
pkgver=1.1.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="A library for reading and writing quicktime files."
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://libquicktime.sourceforge.net/"
|
||
|
depends=('gtk2' 'ffmpeg' 'alsa-lib' 'libxv' 'libgl' 'libxaw' 'x264')
|
||
|
options=('!libtool')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('e4fcda219f1e0ca508d9baa3700e4a59')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr \
|
||
|
--enable-gpl \
|
||
|
--with-ffmpeg \
|
||
|
--with-x264 \
|
||
|
--without-doxygen
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|
||
|
|