wok view lftp/receipt @ rev 18181

iproute2: add /bin/ip
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 05 16:43:45 2015 +0200 (2015-07-05)
parents d7486a2cc6d9
children 3132d67b7e38
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.4.8"
5 CATEGORY="network"
6 SHORT_DESC="Small but powerful ftp client"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://lftp.yar.ru/"
11 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
12 CROSS="bug: failed at test"
14 DEPENDS="gmp readline expat gnutls gcc-lib-base"
15 BUILD_DEPENDS="gmp-dev ncurses-dev readline-dev expat-dev gperf gnutls-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --with-gnutls \
23 --without-openssl \
24 --build=$HOST_SYSTEM \
25 --host=$HOST_SYSTEM &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }