# $Id: PKGBUILD 103794 2014-01-11 20:08:28Z eric $ # Contributor: Alexander Fehr # Maintainer: Daniel J Griffiths pkgname=filezilla pkgver=3.7.3 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' 'wxgtk2.8' 'libidn' 'hicolor-icon-theme' 'sqlite') install=filezilla.install source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2") build() { cd "${pkgname}-${pkgver}" export WX_CONFIG_PATH='/usr/bin/wx-config-2.8' export WXRC='/usr/bin/wxrc-2.8' ./autogen.sh ./configure \ --prefix=/usr \ --disable-manualupdatecheck \ --disable-autoupdatecheck \ --disable-static \ --with-tinyxml=builtin make } package() { cd "${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install } md5sums=('df7828739a852ac3adbc1c010303115d')