wok view libquicktime/receipt @ rev 13295

Add libQtDeclarative
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 28 13:39:20 2012 +0200 (2012-08-28)
parents b7319995b37e
children 6b09507225ec
line source
1 # SliTaz package receipt.
3 PACKAGE="libquicktime"
4 VERSION="1.2.4"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264"
13 BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --enable-gpl \
21 --with-ffmpeg \
22 --with-x264 \
23 --without-doxygen \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/$PACKAGE
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*so* $fs/usr/lib/
35 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
36 }