wok rev 14002

Add ckermit
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 15 15:21:44 2013 +0100 (2013-02-15)
parents bba49f1004c4
children d9abc342bfd6
files ckermit/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ckermit/receipt	Fri Feb 15 15:21:44 2013 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ckermit"
     1.7 +VERSION="9.0.302"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Portable Scriptable Network and Serial Communication Software."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +WEB_SITE="http://www.columbia.edu/kermit/ck90.html"
    1.12 +TARBALL="cku${VERSION##*.}.tar.gz"
    1.13 +WGET_URL="ftp://kermit.columbia.edu/kermit/archives/$TARBALL"
    1.14 +
    1.15 +DEPENDS="ncurses"
    1.16 +BUILD_DEPENDS="ncurses-dev"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	make linux "LNKFLAGS=-lncurses"
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	mkdir -p $fs/usr/bin
    1.29 +	cp $src/wart $fs/usr/bin
    1.30 +	cp $src/wermit $fs/usr/bin
    1.31 +}