diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-02-04 11:35:52 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-02-04 11:35:52 +0100 |
commit | 64d1eee48611d47e3666647522a6cae2b41902ff (patch) | |
tree | abf5e07345df665486be6b8b27626b96df3e4097 /extra/lftp/PKGBUILD | |
parent | d948673f5f5d6f5db6c6e534d610365b122a3e66 (diff) | |
parent | 3e78397cb031dee2b5874f1c0c9e4c9977f0dbb7 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/libnetfilter_log/PKGBUILD
community/radvd/PKGBUILD
community/ucarp/PKGBUILD
extra/ardour/PKGBUILD
extra/docker/PKGBUILD
extra/fftw/PKGBUILD
Diffstat (limited to 'extra/lftp/PKGBUILD')
-rw-r--r-- | extra/lftp/PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/extra/lftp/PKGBUILD b/extra/lftp/PKGBUILD index ea2cdc9ea..9d6485d4d 100644 --- a/extra/lftp/PKGBUILD +++ b/extra/lftp/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 176314 2013-01-29 15:39:14Z andyrtr $ +# $Id: PKGBUILD 176998 2013-02-03 16:13:46Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: Aaron Griffin <aaron@archlinux.org> pkgname=lftp -pkgver=4.4.1 +pkgver=4.4.2 pkgrel=1 pkgdesc="Sophisticated command line based FTP client" arch=('i686' 'x86_64' 'mips64el') @@ -12,16 +12,16 @@ depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh') optdepends=('perl: needed for convert-netscape-cookies and verify-file') url="http://lftp.yar.ru/" backup=('etc/lftp.conf') -source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2 - lftp-4.3.8-gets.patch) -md5sums=('1a6de8e3922ffb51ec21642e51744b02' - '77168a7f368b07eec7e079b55496fa97') +source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2) +md5sums=('8e974cd87c9d4362031f61351cfe742e') build() { cd ${srcdir}/${pkgname}-${pkgver} - patch -Np1 -i ${srcdir}/lftp-4.3.8-gets.patch - ./configure --prefix=/usr --with-gnutls \ - --without-openssl --disable-static + ./configure --prefix=/usr \ + --with-gnutls \ + --without-openssl \ + --without-included-regex \ + --disable-static make } |