gtk/filezilla/PKGBUILD
2016-10-02 03:52:31 +01:00

36 lines
1.0 KiB
Bash

pkgname=filezilla
pkgver=3.22.0
pkgrel=1
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
arch=('x86_64')
url="https://filezilla-project.org/"
license=('GPL')
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls' 'libfilezilla>=0.7.0')
install=${pkgname}.install
screenshot="https://filezilla-project.org/images/screenshots/fz3_linux_main.png"
source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2")
sha256sums=('60b48314f356f682712c9cec0a27c6469bf888da781c658054bb7f0b23dcfacf')
build() {
cd "${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
--disable-manualupdatecheck \
--disable-autoupdatecheck \
--disable-static \
--enable-locales \
--enable-gnutlssystemciphers \
--with-pugixml=builtin
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
install -Dm644 {AUTHORS,ChangeLog,README} "${pkgdir}/usr/share/doc/${pkgname}/"
}