wok view ckermit/receipt @ rev 25004

updated ntfs-3g and ntfs-3g-dev (2017.3.23 -> 2021.8.22)
author Hans-G?nter Theisgen
date Mon May 16 16:20:40 2022 +0100 (23 months ago)
parents 3705d68ed8f3
children 41a539cfe5f8
line source
1 # SliTaz package receipt.
3 PACKAGE="ckermit"
4 VERSION="9.0.302"
5 CATEGORY="network"
6 SHORT_DESC="Portable Scriptable Network and Serial Communication Software."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://www.columbia.edu/kermit/ck90.html"
10 TARBALL="cku${VERSION##*.}.tar.gz"
11 WGET_URL="ftp://kermit.columbia.edu/kermit/archives/$TARBALL"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed '/^<td>[0-9]/!d;s|<td>||;s|<.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 sed -i 's|uname -m|echo i486|' makefile
27 make linux "LNKFLAGS=-lncurses -ltinfo"
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp $src/wart $fs/usr/bin
35 cp $src/wermit $fs/usr/bin
36 }