wok view ncftp/receipt @ rev 21820

syslinux/kbd: check kbd malloc pointer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 11:41:26 2019 +0200 (2019-08-25)
parents 3ba8d2c9720d
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="ncftp"
4 VERSION="3.2.6"
5 CATEGORY="network"
6 SHORT_DESC="A File Transfer Protocol client."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Artistic"
9 WEB_SITE="https://www.ncftp.com/ncftp/"
11 TARBALL="$PACKAGE-$VERSION-src.tar.xz"
12 WGET_URL="ftp://ftp.ncftp.com/ncftp/$TARBALL"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export LDFLAGS="$LDFLAGS -ltinfo"
21 ./configure --prefix=/usr --sysconfdir=/etc &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }