2013-04-28 06:49:48 +08:00
|
|
|
pkgname=filezilla
|
2017-03-21 14:30:15 +08:00
|
|
|
pkgver=3.25.1
|
2016-02-12 21:24:39 +08:00
|
|
|
pkgrel=1
|
2013-04-28 06:49:48 +08:00
|
|
|
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
|
|
|
|
arch=('x86_64')
|
2016-08-04 14:50:32 +08:00
|
|
|
url="https://filezilla-project.org/"
|
2013-04-28 06:49:48 +08:00
|
|
|
license=('GPL')
|
2017-02-22 14:48:52 +08:00
|
|
|
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls' 'libfilezilla')
|
2013-09-01 20:17:55 +08:00
|
|
|
install=${pkgname}.install
|
2015-11-30 00:07:13 +08:00
|
|
|
screenshot="https://filezilla-project.org/images/screenshots/fz3_linux_main.png"
|
2016-06-28 14:02:08 +08:00
|
|
|
source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2")
|
2017-03-21 14:30:15 +08:00
|
|
|
sha256sums=('8873be716059cf7425b72dba5d130ea2a1ec62a769b4ada41f6c7313a2112fc1')
|
2015-09-17 08:48:11 +08:00
|
|
|
|
2013-04-28 06:49:48 +08:00
|
|
|
build() {
|
|
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
2014-02-14 21:34:13 +08:00
|
|
|
--prefix=/usr \
|
2013-04-28 06:49:48 +08:00
|
|
|
--disable-manualupdatecheck \
|
|
|
|
--disable-autoupdatecheck \
|
|
|
|
--disable-static \
|
2015-08-25 20:44:33 +08:00
|
|
|
--enable-locales \
|
2015-11-02 12:59:54 +08:00
|
|
|
--enable-gnutlssystemciphers \
|
2015-08-25 20:44:33 +08:00
|
|
|
--with-pugixml=builtin
|
2013-04-28 06:49:48 +08:00
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-09-01 20:17:55 +08:00
|
|
|
cd "${pkgname}-${pkgver}"
|
2013-05-19 15:56:26 +08:00
|
|
|
|
2013-09-01 20:17:55 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
|
2014-02-14 21:34:13 +08:00
|
|
|
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
|
|
|
|
install -Dm644 {AUTHORS,ChangeLog,README} "${pkgdir}/usr/share/doc/${pkgname}/"
|
2013-04-28 06:49:48 +08:00
|
|
|
}
|