aboutsummaryrefslogtreecommitdiffstats
path: root/main/lftp/APKBUILD
blob: ebc9be3f6fd254a19826be981ce135c8012f3877 (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.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="1a43302f5bc3552741c329c6afe86c9a  lftp-4.5.1.tar.xz"
sha256sums="dd40ef64e9e07a20e60eef5d0dcedcc0453d90c27a029765b77886998a631adb  lftp-4.5.1.tar.xz"
sha512sums="a81c1f1d2b20f56766e8129a2b3b8ae1a6ed271746d3ddb6c1c3784afa2fa618c89fc013f7b65728340761965926f45f96afa493534593b2c5c1700b9f4a7ad1  lftp-4.5.1.tar.xz"