2011-02-22 06:53:43 +08:00
|
|
|
#
|
|
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2013-12-12 00:06:20 +08:00
|
|
|
# Contributor: abveritas@chakra-project.org
|
|
|
|
# Maintainer: Bruce Liu <brli@users.sourceforge.net>
|
2011-02-22 06:53:43 +08:00
|
|
|
|
|
|
|
pkgname=lftp
|
2013-12-12 00:06:20 +08:00
|
|
|
pkgver=4.4.13
|
2011-02-22 06:53:43 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Sophisticated command line based FTP client with openssl"
|
2013-02-02 01:26:40 +08:00
|
|
|
arch=('x86_64')
|
2011-02-22 06:53:43 +08:00
|
|
|
url="http://lftp.yar.ru/"
|
|
|
|
license=('GPL3')
|
2011-04-30 04:21:10 +08:00
|
|
|
depends=('gcc-libs' 'readline' "gnutls>=2.6.8" "expat>=2.0.1" 'perl' 'sh')
|
2011-03-08 07:04:02 +08:00
|
|
|
makedepends=('autoconf')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('network')
|
2013-12-12 00:06:20 +08:00
|
|
|
source=("http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.bz2")
|
|
|
|
md5sums=('87b723b6a01c6bf0e5f4ba61de41bdac')
|
2011-02-22 06:53:43 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
2013-02-28 05:05:40 +08:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-gnutls \
|
|
|
|
--without-openssl \
|
|
|
|
--disable-static
|
2011-03-08 07:04:02 +08:00
|
|
|
make
|
2011-02-22 06:53:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
rm -rf ${pkgdir}/usr/lib
|
2011-03-08 07:04:02 +08:00
|
|
|
}
|
2013-12-12 00:06:20 +08:00
|
|
|
|