blob: 2f9e9f2873ef0b4e8498c8b617d36bfec1f3941f (
plain)
1 # Description: A library based on quicktime4linux with extensions.
2 # URL: http://libquicktime.sourceforge.net/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Younes Hafri, ycrux at club-internet dot fr
5 # Depends on: ffmpeg gtk libdivx libdv xorg-libxaw xorg-libxcomposite
6
7 name=libquicktime
8 version=1.1.2
9 release=1
10 source=(http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --mandir=/usr/man \
18 --enable-gpl \
19 --disable-nls \
20 --with-libdv \
21 --without-doxygen
22
23 make
24 make DESTDIR=$PKG install
25 }
|