wok annotate lftp/receipt @ rev 22955

updated iproute2 (3.6.0 -> 5.5.0)
author Hans-G?nter Theisgen
date Fri Feb 28 15:23:48 2020 +0100 (2020-02-28)
parents 3132d67b7e38
children ae377eba9841
rev   line source
mimas@2027 1 # SliTaz package receipt.
mimas@2027 2
mimas@2027 3 PACKAGE="lftp"
Hans-G?nter@21107 4 VERSION="4.8.4"
mimas@2027 5 CATEGORY="network"
Hans-G?nter@21107 6 SHORT_DESC="Small but powerful ftp client."
mimas@2027 7 MAINTAINER="mimas@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
Hans-G?nter@21107 9 WEB_SITE="https://lftp.yar.ru/"
Hans-G?nter@21107 10
Hans-G?nter@21107 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
Hans-G?nter@21107 12 WGET_URL="https://lftp.tech/ftp/$TARBALL"
Hans-G?nter@21107 13
Hans-G?nter@21107 14 DEPENDS="expat gcc-lib-base gmp gnutls readline"
Hans-G?nter@21107 15 BUILD_DEPENDS="expat-dev gmp-dev gnutls-dev gperf \
Hans-G?nter@21107 16 libgnutls ncurses-dev readline-dev"
Hans-G?nter@21107 17
slaxemulator@12381 18 CROSS="bug: failed at test"
mimas@2027 19
mimas@2027 20 # Rules to configure and make the package.
mimas@2027 21 compile_rules()
mimas@2027 22 {
Hans-G?nter@21107 23 ./configure \
Hans-G?nter@21107 24 --with-gnutls \
Hans-G?nter@21107 25 --without-openssl \
Hans-G?nter@21107 26 --build=$HOST_SYSTEM \
slaxemulator@12381 27 --host=$HOST_SYSTEM &&
Hans-G?nter@21107 28 make -j 1 &&
slaxemulator@9068 29 make install
mimas@2027 30 }
mimas@2027 31
mimas@2027 32 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2027 33 genpkg_rules()
mimas@2027 34 {
mimas@2027 35 mkdir -p $fs/usr
slaxemulator@12381 36 cp -a $install/usr/bin $fs/usr
mimas@2027 37 }