wok-undigest view libquicktime/receipt @ rev 130

pcmanfm2: style WGET_URL
author Rohit Joshi <jozee@slitaz.org>
date Mon May 17 13:23:42 2010 -0400 (2010-05-17)
parents
children
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 }