wok view ckermit/receipt @ rev 16713

sakura: add patch
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 29 10:48:34 2014 +0300 (2014-05-29)
parents c9e36e1126f9
children 17e313b5b9c1
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 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make linux "LNKFLAGS=-lncurses"
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp $src/wart $fs/usr/bin
28 cp $src/wermit $fs/usr/bin
29 }