blob: 3cc6f0f04a1088322ac4e18cf7e98d2d2d283fa0 (
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 libdv schroedinger util-linux-ng xorg-libxaw
6
7 name=libquicktime
8 version=1.2.4
9 release=1
10 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$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 }
|