blob: 43589e5a3009bfef33931f09c1423cd8bfd41463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>
pkgname=lftp
pkgver=4.6.1
pkgrel=0
pkgdesc="LFTP is sophisticated ftp/http client"
url="http://lftp.yar.ru/"
arch="all"
license="GPL"
depends=
makedepends="gnutls-dev readline-dev ncurses-dev gettext-dev"
subpackages="$pkgname-doc"
source="http://lftp.yar.ru/ftp/lftp-$pkgver.tar.xz
"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc/lftp \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-gnutls \
--with-modules \
--disable-nls \
--disable-static \
--with-gnutls \
--without-openssl \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir" install
rm -f "$pkgdir"/usr/lib/*.la
rm -f "$pkgdir"/usr/lib/charset.alias
}
md5sums="e204e68ee2438da67644cc239de7c465 lftp-4.6.1.tar.xz"
sha256sums="d1eea1ed98d05e050b909d5a90e8c7f345c84781b91af36d944fb2f33eba35bf lftp-4.6.1.tar.xz"
sha512sums="f8ec788ea4d78725772553746fe6dfff9432fb37942f580ea2c3c1fe08503785d4e1b135536965217d143584806f5ae86edede0631d9797b4e257828c65953ed lftp-4.6.1.tar.xz"
|