mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-27 09:30:45 +00:00
29 lines
1.3 KiB
BlitzBasic
29 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "LFTP is a sophisticated file transfer program with \
|
|
command line interface. It supports FTP, HTTP, \
|
|
FISH, SFTP, HTTPS and FTPS protocols"
|
|
HOMEPAGE = "http://lftp.yar.ru/"
|
|
SECTION = "console/network"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
SRC_URI = "http://lftp.yar.ru/ftp/lftp-${PV}.tar.bz2"
|
|
SRC_URI[md5sum] = "c32e15b96c08f7f0b2d17efbceb00db8"
|
|
SRC_URI[sha256sum] = "adceaef1bd21a38d07c973233fab603813c431f0a8dcbd23239fa9a41ae17b6e"
|
|
|
|
inherit autotools gettext pkgconfig
|
|
|
|
EXTRA_OECONF += "--with-modules --disable-rpath"
|
|
|
|
PACKAGECONFIG ??= "openssl zlib gnutls readline expat"
|
|
PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl"
|
|
PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_INCDIR}/.., --without-zlib, zlib"
|
|
PACKAGECONFIG[gnutls] = "--with-gnutls, --without-gnutls, gnutls"
|
|
PACKAGECONFIG[readline] = "--with-readline=${STAGING_INCDIR}/.. --with-readline-inc=${STAGING_INCDIR} --with-readline-lib=-lreadline, --with-readline=no, readline"
|
|
PACKAGECONFIG[expat] = "--with-expat=${STAGING_INCDIR}/.. --with-expat-inc=${STAGING_INCDIR} --with-expat-lib=-lexpat, , expat"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${libdir}/charset.alias
|
|
}
|
|
FILES:${PN} += "${datadir}/icons/hicolor"
|
|
RDEPENDS:${PN} = "perl bash readline"
|