wok view mediainfo/receipt @ rev 21619

gcc83-lib-base: revert to gcc-lib-base post install
Previous post-install rules don't work for me producing error:
error: C compiler cannot create executables
on the another plain build when I previously used gcc83 & gcc83-lib-base to compile my other package
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 25 14:09:45 2019 +0300 (2019-05-25)
parents 1c90d31d2118
children e9de689753f8
line source
1 # SliTaz package receipt.
3 PACKAGE="mediainfo"
4 VERSION="19.04"
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="automake autoconf 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 }