wok-6.x view ncftp/receipt @ rev 17373
linux64-module-headers: fix build link
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 21 15:15:22 2014 +0100 (2014-11-21) |
parents | 4b621e9fc7d6 |
children | 3ba8d2c9720d |
line source
1 # SliTaz package receipt.
3 PACKAGE="ncftp"
4 VERSION="3.2.5"
5 CATEGORY="network"
6 SHORT_DESC="A File Transfer Protocol client."
7 WEB_SITE="http://www.ncftp.com/ncftp/"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="Artistic"
10 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
11 WGET_URL="ftp://ftp.ncftp.com/ncftp/$TARBALL"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr --sysconfdir=/etc &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }