wok view ncftp/receipt @ rev 15324

Up tcpdump (4.4.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 21:57:38 2013 +0000 (2013-09-27)
parents 17caa2ad89a1
children 23c3aed67cd9
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 TARBALL="$PACKAGE-$VERSION-src.tar.bz2"
10 WGET_URL="ftp://ftp.ncftp.com/ncftp/$TARBALL"
12 DEPENDS="ncurses"
13 BUILD_DEPENDS="ncurses-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --prefix=/usr --sysconfdir=/etc &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }