wok view ckermit/receipt @ rev 14257

syslinux/iso2exe: check kernel version, add floppy bootstrap stub
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 28 11:51:42 2013 +0100 (2013-03-28)
parents
children eb8067417980
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 WEB_SITE="http://www.columbia.edu/kermit/ck90.html"
9 TARBALL="cku${VERSION##*.}.tar.gz"
10 WGET_URL="ftp://kermit.columbia.edu/kermit/archives/$TARBALL"
12 DEPENDS="ncurses"
13 BUILD_DEPENDS="ncurses-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make linux "LNKFLAGS=-lncurses"
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp $src/wart $fs/usr/bin
27 cp $src/wermit $fs/usr/bin
28 }