diff options
author | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-05-27 10:13:52 +0200 |
commit | 14a8f5d3c7889f2046a008b1b1dc29f485ebb359 (patch) | |
tree | 644ebb60f7155dd5c139d233857684fbcd8546e6 /manualPorts/libquicktime/Pkgfile | |
download | crux-ports-14a8f5d3c7889f2046a008b1b1dc29f485ebb359.tar.xz |
initial commit
Diffstat (limited to 'manualPorts/libquicktime/Pkgfile')
-rw-r--r-- | manualPorts/libquicktime/Pkgfile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/manualPorts/libquicktime/Pkgfile b/manualPorts/libquicktime/Pkgfile new file mode 100644 index 0000000..519d6fe --- /dev/null +++ b/manualPorts/libquicktime/Pkgfile @@ -0,0 +1,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 +} |