wok view elementary-dev/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 689fcc83daec
children
line source
1 # SliTaz package receipt.
3 PACKAGE="elementary-dev"
4 VERSION="1.7.10"
5 CATEGORY="development"
6 SHORT_DESC="EFL full regular widget set - Devel files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WANTED="elementary"
10 WEB_SITE="https://www.enlightenment.org/"
11 HOST_ARCH="i486 arm"
13 DEPENDS="efreet-dev emotion-dev ethumb-dev elementary pkg-config"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 case "$ARCH" in
19 i?86) edje_mods="/usr/lib/edje/modules/elm/linux-gnu-i486-1.0.0" ;;
20 arm) edje_mods="/usr/lib/edje/modules/elm/linux-gnueabi-arm-1.0.0" ;;
21 esac
22 mkdir -p ${fs}${edje_mods}
23 cp -a $install/usr/include $fs/usr
24 cp -a $install/usr/lib/*.*a $fs/usr/lib
25 cp -a ${install}${edje_mods}/module.la ${fs}${edje_mods}
26 cp -a $install/usr/lib/elementary $fs/usr/lib
27 rm -f $fs/usr/lib/elementary/modules/*/*/*.so
28 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
29 # menus
30 mkdir -p $fs/usr/bin
31 cp -a $install/usr/bin/* $fs/usr/bin
32 mkdir -p $fs/usr/share/pixmaps
33 cp -a $install/usr/share/applications $fs/usr/share
34 cp -a $install/usr/share/icons/* $fs/usr/share/pixmaps
35 }