wok view discount/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 b81825d54cb6
children fb8526ee16f5
line source
1 # SliTaz package receipt.
3 PACKAGE="discount"
4 VERSION="2.2.5"
5 CATEGORY="utilities"
6 SHORT_DESC="A C implementation of the markdown language"
7 MAINTAINER="necrophcodr@necrophcodr.me"
8 LICENSE="BSD3"
9 WEB_SITE="http://www.pell.portland.or.us/~orc/Code/markdown"
11 TARBALL="${PACKAGE}-${VERSION}.tar.gz"
12 WGET_URL="https://github.com/Orc/$PACKAGE/archive/v$VERSION/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
16 HOST_ARCH="i486 arm"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure.sh --prefix=/usr &&
22 make -j 1 &&
23 make DESTDIR=$DESTDIR install
24 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr/
32 }