mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 10:47:15 +08:00
35 lines
811 B
Bash
35 lines
811 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Contributor: abveritas@chakra-project.org
|
|
# Maintainer: Bruce Liu <brli@users.sourceforge.net>
|
|
|
|
pkgname=lftp
|
|
pkgver=4.4.13
|
|
pkgrel=1
|
|
pkgdesc="Sophisticated command line based FTP client with openssl"
|
|
arch=('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')
|
|
categories=('network')
|
|
source=("http://lftp.yar.ru/ftp/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('87b723b6a01c6bf0e5f4ba61de41bdac')
|
|
|
|
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
|
|
}
|
|
|