30 lines
718 B
Plaintext
30 lines
718 B
Plaintext
# Description: A library based on quicktime4linux with extensions.
|
|
# URL: http://libquicktime.sourceforge.net/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# 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
|
|
libquicktime-1.2.4-ffmpeg3-1.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
patch -p 1 -i $SRC/libquicktime-1.2.4-ffmpeg3-1.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-gpl \
|
|
--disable-nls \
|
|
--with-libdv \
|
|
--with-ffmpeg \
|
|
--with-x264 \
|
|
--without-doxygen
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|