wok view 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 source
1 # SliTaz package receipt.
3 PACKAGE="libquicktime"
4 VERSION="1.1.5"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="A library for reading and writing quicktime files."
8 WEB_SITE="http://libquicktime.sourceforge.net/"
9 DEPENDS="gtk+ ffmpeg-svn alsa-lib libxv libgl xorg-libXaw x264"
10 BUILD_DEPENDS=" gtk+-dev ffmpeg-svn-dev alsa-lib-dev xorg-libXaw-dev x264-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
16 compile_rules() {
17 cd $src
18 ./configure --prefix=/usr \
19 --enable-gpl \
20 --with-ffmpeg \
21 --with-x264 \
22 --without-doxygen &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/$PACKAGE
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*so* $fs/usr/lib/
33 cp -a $_pkg/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
35 }