wok view mplayer-codecs/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents bb009a6ef036
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="mplayer-codecs"
4 VERSION="20110131"
5 CATEGORY="multimedia"
6 SHORT_DESC="All MPlayer codecs for SliTaz."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.mplayerhq.hu/design7/news.html"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://www1.mplayerhq.hu/MPlayer/releases/codecs/all-$VERSION.tar.bz2"
12 HOST_ARCH="i486 arm"
14 DEPENDS="mplayer"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 mkdir -p $fs/usr/lib/mplayer/codecs
20 cp -a $src/* $fs/usr/lib/mplayer/codecs
21 # Remove codec depending on libstdc++.so.5
22 rm -f $fs/usr/lib/mplayer/codecs/drvc.so
23 rm -f $fs/usr/lib/mplayer/codecs/cook.so
24 }