blob: 519d6fe842ee525f7323eaec6d1e5c9f3452a852 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Description: A library based on quicktime4linux with extensions.
# URL: http://libquicktime.sourceforge.net/
# Maintainer: Erich Eckner, crux at eckner dot net
# Packager: Younes Hafri, ycrux at club-internet dot fr
# Depends on: faac faad2 ffmpeg gtk libdv util-linux xorg-libxaw
name=libquicktime
version=1.2.4
release=3
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
ffmpeg_2.9.patch
libav10.patch)
build() {
cd $name-$version
patch -p 1 -i $SRC/ffmpeg_2.9.patch
patch -p 1 -i $SRC/libav10.patch
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-gpl \
--disable-nls \
--with-libdv \
--with-ffmpeg \
--with-x264 \
--without-doxygen
make
make DESTDIR=$PKG install
}
|