wok view minicom/receipt @ rev 21441

updated minicom (2.6 -> 2.7.1)
author Hans-G?nter Theisgen
date Mon Apr 29 14:32:23 2019 +0100 (2019-04-29)
parents eeba7ab1dffe
children c8dccd069e70
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.gz"
12 WGET_URL="http://alioth.debian.org/frs/download.php/3195/$PACKAGE/$TARBALL"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="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 ./configure \
24 --sysconfdir=/etc \
25 --prefix=/usr \
26 --infodir=/usr/share/info \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make -j 1 &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/bin $fs/usr
39 mkdir -p $fs/etc
40 touch $fs$CONFIG_FILES
41 }