wok annotate lftp/receipt @ rev 14761

linux: add boot subroot support (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 19 11:56:55 2013 +0200 (2013-06-19)
parents 7e002bedebe8
children 2b9f96603415
rev   line source
mimas@2027 1 # SliTaz package receipt.
mimas@2027 2
mimas@2027 3 PACKAGE="lftp"
slaxemulator@14619 4 VERSION="4.4.8"
mimas@2027 5 CATEGORY="network"
mimas@2027 6 SHORT_DESC="Small but powerful ftp client"
mimas@2027 7 MAINTAINER="mimas@slitaz.org"
erjo@4298 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2027 9 WEB_SITE="http://lftp.yar.ru/"
mimas@2027 10 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
slaxemulator@12381 11 CROSS="bug: failed at test"
mimas@2027 12
slaxemulator@14619 13 DEPENDS="gmp readline expat gnutls gcc-lib-base"
slaxemulator@14619 14 BUILD_DEPENDS="gmp-dev ncurses-dev readline-dev expat-dev gperf gnutls-dev"
erjo@9918 15
mimas@2027 16 # Rules to configure and make the package.
mimas@2027 17 compile_rules()
mimas@2027 18 {
mimas@2027 19 cd $src
mimas@2027 20 ./configure \
slaxemulator@12381 21 --with-gnutls \
slaxemulator@10183 22 --without-openssl \
slaxemulator@12381 23 --build=$HOST_SYSTEM \
slaxemulator@12381 24 --host=$HOST_SYSTEM &&
pascal@5003 25 make &&
slaxemulator@9068 26 make install
mimas@2027 27 }
mimas@2027 28
mimas@2027 29 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2027 30 genpkg_rules()
mimas@2027 31 {
mimas@2027 32 mkdir -p $fs/usr
slaxemulator@12381 33 cp -a $install/usr/bin $fs/usr
mimas@2027 34 }
mimas@2027 35