contrib/libquicktime/Pkgfile

38 lines
1.0 KiB
Plaintext
Raw Normal View History

2008-12-19 10:48:26 +01:00
# Description: A library based on quicktime4linux with extensions.
2007-06-25 07:09:54 +02:00
# URL: http://libquicktime.sourceforge.net/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2019-05-02 12:47:38 +02:00
# Depends on: faac faad2 ffmpeg gtk lame libdv libvorbis schroedinger util-linux x264 xorg-libxaw
2007-06-25 07:09:54 +02:00
name=libquicktime
2012-04-06 02:30:20 +02:00
version=1.2.4
2019-05-02 12:47:38 +02:00
release=4
source=(https://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
CVE-2016-2399.patch
libquicktime-1.2.4-ffmpeg2.patch
libquicktime-1.2.4-ffmpeg29.patch
libquicktime-1.2.4-ffmpeg4.patch)
2007-06-25 07:09:54 +02:00
build() {
2008-07-18 07:38:47 +02:00
cd $name-$version
2007-06-25 07:09:54 +02:00
2019-05-02 12:47:38 +02:00
patch -p 1 -i $SRC/CVE-2016-2399.patch
patch -p 1 -i $SRC/libquicktime-1.2.4-ffmpeg2.patch
patch -p 1 -i $SRC/libquicktime-1.2.4-ffmpeg29.patch
patch -p 1 -i $SRC/libquicktime-1.2.4-ffmpeg4.patch
for FILE in lqt_ffmpeg.c video.c audio.c ; do
sed -i -e "s:CODEC_ID_:AV_&:g" "plugins/ffmpeg/${FILE}"
done
2007-06-25 07:09:54 +02:00
./configure \
--prefix=/usr \
--enable-gpl \
2008-07-18 07:38:47 +02:00
--disable-nls \
--with-libdv \
--with-ffmpeg \
--with-x264 \
2008-07-18 07:38:47 +02:00
--without-doxygen
2007-06-25 07:09:54 +02:00
make
make DESTDIR=$PKG install
}