wok view minicom/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 c8dccd069e70
children b78e79c31b1f
line source
1 # SliTaz package receipt.
3 PACKAGE="minicom"
4 VERSION="2.7.1"
5 CATEGORY="development"
6 SHORT_DESC="Menu driven communications program."
7 MAINTAINER="f.lombard@free.fr"
8 LICENSE="GPL2"
9 WEB_SITE="https://salsa.debian.org/minicom-team/minicom"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="${WEB_SITE}/-/archive/master/v$VERSION.tar.bz2"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="automake ncurses-dev"
16 CONFIG_FILES="/etc/minirc.dfl"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i 's/getline/get_line/' src/minicom.c
23 ./autogen.sh &&
24 ./configure \
25 --sysconfdir=/etc \
26 --prefix=/usr \
27 --infodir=/usr/share/info \
28 --mandir=/usr/share/man \
29 $CONFIGURE_ARGS &&
30 make -j 1 &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
40 mkdir -p $fs/etc
41 touch $fs$CONFIG_FILES
42 }