mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
33 lines
886 B
Bash
33 lines
886 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# contributor: mornik <mornik@gmail.com>
|
|
|
|
pkgname=lftp
|
|
pkgver=4.3.4
|
|
pkgrel=1
|
|
pkgdesc="Sophisticated command line based FTP client with openssl"
|
|
arch=('i686' 'x86_64')
|
|
url="http://lftp.yar.ru/"
|
|
license=('GPL3')
|
|
depends=('gcc-libs' 'readline' "gnutls>=2.6.8" "expat>=2.0.1" 'perl' 'sh')
|
|
makedepends=('autoconf')
|
|
source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('4840d0d20fafff3792b0b8ac305ab01e')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --with-gnutls \
|
|
--without-openssl --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
rm -rf ${pkgdir}/usr/lib
|
|
}
|