mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
726 B
Bash
31 lines
726 B
Bash
pkgname=lftp
|
|
pkgver=4.6.3a
|
|
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.xz{,.asc})
|
|
backup=('etc/lftp.conf')
|
|
md5sums=('b469ccc40d624aa4fdc66c1674b916d0'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--with-gnutls \
|
|
--without-openssl \
|
|
--without-included-regex \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
rm -rf ${pkgdir}/usr/lib
|
|
}
|