diff options
author | root <root@rshg054.dnsready.net> | 2011-09-26 23:14:33 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-26 23:14:33 +0000 |
commit | abcf87c553a18aec8372de7f690b5aa91a7a0d24 (patch) | |
tree | bb3862ac84497766acac0ac182d5ad948e2a382a /community/filezilla/PKGBUILD | |
parent | 21efc9511d14394cc1d8426e2e0a6c668964fbe9 (diff) |
Mon Sep 26 23:14:33 UTC 2011
Diffstat (limited to 'community/filezilla/PKGBUILD')
-rw-r--r-- | community/filezilla/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/community/filezilla/PKGBUILD b/community/filezilla/PKGBUILD index b9d467799..d81c7e6f8 100644 --- a/community/filezilla/PKGBUILD +++ b/community/filezilla/PKGBUILD @@ -1,21 +1,24 @@ -# $Id: PKGBUILD 54980 2011-08-29 11:06:13Z bluewind $ +# $Id: PKGBUILD 55926 2011-09-25 10:42:49Z bluewind $ # Contributor: Alexander Fehr <pizzapunk gmail com> # Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=filezilla pkgver=3.5.1 -pkgrel=1 +pkgrel=2 pkgdesc="Fast and reliable FTP, FTPS and SFTP client" arch=('i686' 'x86_64') url="http://filezilla-project.org/" license=('GPL') depends=('dbus-core' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3') install=filezilla.install -source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2") -md5sums=('8afb7aee4ba72b6363dcfe469bc7fbef') +source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2" +gnutls-3.patch) +md5sums=('8afb7aee4ba72b6363dcfe469bc7fbef' +'0646cf7d6f90766961724102cf2cebd6') build() { - cd ${pkgname}-${pkgver} + cd "${pkgname}-${pkgver}" + patch -p1 -i "$srcdir/gnutls-3.patch" ./autogen.sh ./configure \ --prefix=/usr \ @@ -28,7 +31,7 @@ build() { } package() { - cd ${pkgname}-${pkgver} + cd "${pkgname}-${pkgver}" - make DESTDIR=${pkgdir} install + make DESTDIR="${pkgdir}" install } |