wok view mediainfo/receipt @ rev 23979

xvkbd: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 18 09:50:51 2020 +0000 (2020-11-18)
parents fc7cc88e4003
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="mediainfo"
4 VERSION="19.09"
5 CATEGORY="utilities"
6 SHORT_DESC="Command-line utility for reading information from media files."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://mediaarea.net/MediaInfo"
11 TARBALL="${PACKAGE}_$VERSION.tar.xz"
12 WGET_URL="https://mediaarea.net/download/source/$PACKAGE/$VERSION/$TARBALL"
14 DEPENDS="libmediainfo"
15 BUILD_DEPENDS="autoconf automake curl-dev libmediainfo-dev libmms-dev \
16 libtool libzen"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd Project/GNU/CLI
22 ./autogen.sh &&
23 ./configure $CONFIGURE_ARGS &&
24 make -j 1 &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }