wok annotate minicom/receipt @ rev 22902
updated gtk-theme-vertex (20160329 -> 20170128)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 23 15:52:16 2020 +0100 (2020-02-23) |
parents | c8dccd069e70 |
children | b78e79c31b1f |
rev | line source |
---|---|
pascal@1643 | 1 # SliTaz package receipt. |
pascal@1643 | 2 |
pascal@1643 | 3 PACKAGE="minicom" |
Hans-G?nter@21441 | 4 VERSION="2.7.1" |
pascal@1643 | 5 CATEGORY="development" |
Hans-G?nter@21441 | 6 SHORT_DESC="Menu driven communications program." |
pascal@1643 | 7 MAINTAINER="f.lombard@free.fr" |
pascal@15583 | 8 LICENSE="GPL2" |
Hans-G?nter@21441 | 9 WEB_SITE="https://salsa.debian.org/minicom-team/minicom" |
Hans-G?nter@21441 | 10 |
Hans-G?nter@21446 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
Hans-G?nter@21446 | 12 WGET_URL="${WEB_SITE}/-/archive/master/v$VERSION.tar.bz2" |
pascal@1643 | 13 |
pascal@15583 | 14 DEPENDS="ncurses" |
Hans-G?nter@21443 | 15 BUILD_DEPENDS="automake ncurses-dev" |
Hans-G?nter@21441 | 16 CONFIG_FILES="/etc/minirc.dfl" |
pascal@15583 | 17 |
pascal@1643 | 18 # Rules to configure and make the package. |
pascal@1643 | 19 compile_rules() |
pascal@1643 | 20 { |
pascal@4276 | 21 sed -i 's/getline/get_line/' src/minicom.c |
Hans-G?nter@21441 | 22 |
Hans-G?nter@21443 | 23 ./autogen.sh && |
Hans-G?nter@21441 | 24 ./configure \ |
Hans-G?nter@21441 | 25 --sysconfdir=/etc \ |
Hans-G?nter@21441 | 26 --prefix=/usr \ |
Hans-G?nter@21441 | 27 --infodir=/usr/share/info \ |
Hans-G?nter@21441 | 28 --mandir=/usr/share/man \ |
domcox@12168 | 29 $CONFIGURE_ARGS && |
Hans-G?nter@21441 | 30 make -j 1 && |
pascal@15583 | 31 make DESTDIR=$DESTDIR install |
pascal@1643 | 32 } |
pascal@1643 | 33 |
pascal@1643 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1643 | 35 genpkg_rules() |
pascal@1643 | 36 { |
pascal@1643 | 37 mkdir -p $fs/usr |
pascal@15583 | 38 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21441 | 39 |
domcox@12171 | 40 mkdir -p $fs/etc |
domcox@12171 | 41 touch $fs$CONFIG_FILES |
pascal@1643 | 42 } |