wok view sc-im/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 59e7941d8658
children 0b484bb7209b
line source
1 # SliTaz package receipt.
3 PACKAGE="sc-im"
4 VERSION="0.7.0"
5 CATEGORY="office"
6 SHORT_DESC="Spreadsheet Calculator Improved"
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="https://github.com/andmarti1424/sc-im"
10 WGET_URL="git|git://github.com/andmarti1424/sc-im"
12 DEPENDS="ncursesw"
13 BUILD_DEPENDS="git ncursesw-dev bison"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/src
19 # Do not override name = scim in Makefile,
20 # in order to avoid conflicts with the package scim
21 make -j1 prefix=/usr && make install prefix=/usr
22 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 # Program name changed to sc-im
27 cook_copy_files sc-im sc-im_help
28 }