wok view libquicktime/receipt @ rev 21449

updated mktorrent (1.0 -> 1.1)
author Hans-G?nter Theisgen
date Mon Apr 29 16:45:09 2019 +0100 (2019-04-29)
parents 086841d75237
children d8c28080cd55
line source
1 # SliTaz package receipt.
3 PACKAGE="libquicktime"
4 VERSION="1.2.4"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="A library for reading and writing quicktime files."
9 WEB_SITE="http://libquicktime.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ ffmpeg alsa-lib xorg-libXv mesa xorg-libXaw x264"
14 BUILD_DEPENDS="gtk+-dev ffmpeg-dev alsa-lib-dev xorg-libXv-dev xorg-libXaw-dev x264-dev zlib-dev mesa-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 patch -p0 < $stuff/ffmpeg.u
20 ./configure --prefix=/usr \
21 --enable-gpl \
22 --with-ffmpeg \
23 --with-x264 \
24 --without-doxygen \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/$PACKAGE
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*so* $fs/usr/lib/
36 cp -a $install/usr/lib/$PACKAGE/*so* $fs/usr/lib/$PACKAGE
37 }