wok-next view libquicktime/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libquicktime"
4 VERSION="1.2.4"
5 CATEGORY="multimedia"
6 MAINTAINER="maintainer@slitaz.org"
7 LICENSE="LGPL2.1"
8 SHORT_DESC="A library for reading and writing quicktime files"
9 WEB_SITE="http://libquicktime.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="alsa-lib-dev ffmpeg-dev gtk2-dev libxaw-dev libxv-dev \
15 mesa-dev x264-dev zlib-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules()
19 {
20 ./configure \
21 --enable-gpl \
22 --with-ffmpeg \
23 --with-x264 \
24 --without-doxygen \
25 $CONFIGURE_ARGS &&
26 fix libtool &&
27 make &&
28 make DESTDIR=$install install
29 }
31 genpkg_rules()
32 {
33 case $PACKAGE in
34 libquicktime)
35 copy @std
36 DEPENDS="alsa-lib ffmpeg gtk2 libxaw libxv mesa x264"
37 ;;
38 *-dev)
39 copy @dev
40 ;;
41 esac
42 }