diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-09-28 11:50:29 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-09-28 11:50:29 -0500 |
commit | ef92c0f5776ba1a714069657083749bf40195037 (patch) | |
tree | f618626dcf413bf7103e017b6ca461c7b6244f66 /community/filezilla/PKGBUILD | |
parent | 5e3e8bede7af30061a5ab7c4b5e9903f06d45249 (diff) |
Commiting libre package filezilla-3.5.1-2
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 d92c7d67e..8a3c1cc65 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' 'mips64el') 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 } |