gtk/filezilla/PKGBUILD
2013-05-12 22:17:25 +02:00

31 lines
757 B
Bash

pkgname=filezilla
pkgver=3.7.0
pkgrel=1
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
arch=('x86_64')
url="http://filezilla-project.org/"
license=('GPL')
depends=('dbus-core' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'filesystem-extra')
install=filezilla.install
source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2")
build() {
cd "${pkgname}-${pkgver}"
./autogen.sh
./configure \
--prefix=/extra/usr \
--disable-manualupdatecheck \
--disable-autoupdatecheck \
--disable-static \
--with-tinyxml=builtin
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
md5sums=('de827a062ec316d0da99936aeaaeeb79')