wok diff libquicktime/receipt @ rev 6835

Forgot patch for freeimage to compile with gcc 4.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 21:25:15 2010 +0000 (2010-10-19)
parents
children 4130b89679fd
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libquicktime/receipt	Tue Oct 19 21:25:15 2010 +0000
     1.3 @@ -0,0 +1,35 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libquicktime"
     1.7 +VERSION="1.1.5"
     1.8 +CATEGORY="multimedia"
     1.9 +MAINTAINER="jozee@slitaz.org"
    1.10 +SHORT_DESC="A library for reading and writing quicktime files."
    1.11 +WEB_SITE="http://libquicktime.sourceforge.net/"
    1.12 +DEPENDS="gtk+  ffmpeg-svn  alsa-lib libxv libgl xorg-libXaw x264"
    1.13 +BUILD_DEPENDS=" gtk+-dev  ffmpeg-svn-dev  alsa-lib-dev  xorg-libXaw-dev x264-dev"
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +
    1.19 +compile_rules() {
    1.20 +  cd $src
    1.21 +  ./configure --prefix=/usr  \
    1.22 +			  --enable-gpl \
    1.23 +			  --with-ffmpeg \
    1.24 +			  --with-x264 \
    1.25 +			  --without-doxygen &&
    1.26 +  make &&
    1.27 +  make DESTDIR=$PWD/_pkg install
    1.28 +}
    1.29 +	
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/lib/$PACKAGE
    1.34 +	cp -a $_pkg/usr/bin $fs/usr
    1.35 +	cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
    1.36 +	cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
    1.37 +	
    1.38 +}