wok annotate libquicktime/receipt @ rev 13952

xournal: up to 4.7
author ernia <monghitri@aruba.it>
date Tue Jan 29 21:53:31 2013 +0000 (2013-01-29)
parents 6ad7fec1c8d0
children 086841d75237
rev   line source
jozee@6830 1 # SliTaz package receipt.
jozee@6830 2
jozee@6830 3 PACKAGE="libquicktime"
slaxemulator@12423 4 VERSION="1.2.4"
jozee@6830 5 CATEGORY="multimedia"
jozee@6830 6 MAINTAINER="jozee@slitaz.org"
jozee@6830 7 SHORT_DESC="A library for reading and writing quicktime files."
jozee@6830 8 WEB_SITE="http://libquicktime.sourceforge.net/"
jozee@6830 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@6830 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@6830 11
slaxemulator@12423 12 DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264"
slaxemulator@12423 13 BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev"
slaxemulator@12423 14
jozee@6830 15 # Rules to configure and make the package.
slaxemulator@12423 16 compile_rules()
slaxemulator@12423 17 {
pascal@13796 18 cd $src
pascal@13796 19 ./configure --prefix=/usr \
pascal@13796 20 --enable-gpl \
pascal@13796 21 --with-ffmpeg \
pascal@13796 22 --with-x264 \
pascal@13796 23 --without-doxygen \
pascal@13796 24 $CONFIGURE_ARGS &&
pascal@13796 25 make &&
pascal@13796 26 make DESTDIR=$DESTDIR install
jozee@6830 27 }
jozee@6830 28
jozee@6830 29 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@6830 30 genpkg_rules()
jozee@6830 31 {
jozee@6830 32 mkdir -p $fs/usr/lib/$PACKAGE
slaxemulator@12423 33 cp -a $install/usr/bin $fs/usr
slaxemulator@12423 34 cp -a $install/usr/lib/*so* $fs/usr/lib/
slaxemulator@12423 35 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
jozee@6830 36 }