PKGBUILDs/community/filezilla/PKGBUILD

23 lines
705 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 3749 2009-10-08 17:14:41Z dgriffiths $
# Maintainer: Alexander Fehr <pizzapunk gmail com>
pkgname=filezilla
pkgver=3.2.8
pkgrel=1
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
arch=('i686' 'x86_64')
url="http://filezilla-project.org/"
license=('GPL')
depends=('dbus-core' 'wxgtk' 'libidn' 'hicolor-icon-theme')
install=filezilla.install
source=(http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2)
md5sums=('dfba22a167266bfdd891d47c2434eada')
build() {
cd "$srcdir/filezilla-$pkgver"
./configure --prefix=/usr --disable-manualupdatecheck || return 1
make || return 1
make DESTDIR="$pkgdir" install || return 1
}