blob: 414d6fce985bb8a35b6a75c9592c4f5dbd2806db (
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.5.2
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="d26ab59a7402048d4b382e720748aac6 lftp-4.5.2.tar.xz"
sha256sums="34e5da2b2b08c2a96bc58ae5fa81372fb6cb96dc856f5d0bcecf77e974d04746 lftp-4.5.2.tar.xz"
sha512sums="c5f5c33178569461be9f4c71e4bc6f8165d4e1ddc337e4d7d0151b86102f17bef50a238a5846ac3847be9d6638ce826af6d1d3bf8525aea8d3561cbd32da41dc lftp-4.5.2.tar.xz"
|