wok view mediainfo-gui/receipt @ rev 24533

updated f3 (7.2 -> 8.0)
author Hans-G?nter Theisgen
date Wed Feb 23 11:14:10 2022 +0100 (2022-02-23)
parents a72a832af45d
children e717a4953b0e
line source
1 # SliTaz package receipt.
3 PACKAGE="mediainfo-gui"
4 VERSION="19.09"
5 CATEGORY="utilities"
6 SHORT_DESC="Unified display of the technical and tag data for media files."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://mediaarea.net/MediaInfo"
11 TARBALL="MediaInfo_GUI_${VERSION}_GNU_FromSource.tar.xz"
12 WGET_URL="http://mediaarea.net/download/binary/$PACKAGE/$VERSION/$TARBALL"
14 DEPENDS="gtk+ wxWidgets"
15 BUILD_DEPENDS="file wxWidgets-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://mediaarea.net/en/MediaInfo/Download/Source 2> /dev/null | \
21 sed '/\/mediainfo-gui\//!d;s|.*mediainfo-gui/||;s|/.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./GUI_Compile.sh
28 cd MediaInfo/Project/GNU/GUI
29 make DESTDIR=$install install
31 mkdir -p $install/usr/share/applications
32 cp -a $src/MediaInfo/Project/GNU/GUI/mediainfo-gui.desktop \
33 $install/usr/share/applications
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 cp -a $install/* $fs
40 }