From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/filezilla/PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ community/filezilla/filezilla.install | 11 +++++++++++ 2 files changed, 46 insertions(+) create mode 100644 community/filezilla/PKGBUILD create mode 100644 community/filezilla/filezilla.install (limited to 'community/filezilla') diff --git a/community/filezilla/PKGBUILD b/community/filezilla/PKGBUILD new file mode 100644 index 000000000..4b7e9ea0e --- /dev/null +++ b/community/filezilla/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 43810 2011-03-29 21:55:24Z jelle $ +# Contributor: Alexander Fehr +# Maintainer: Daniel J Griffiths + +pkgname=filezilla +pkgver=3.4.0 +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' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme') +install=filezilla.install +source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2") +md5sums=('25617d75167d07c0d3cfced69a4cf7cc') + +build() { + cd ${pkgname}-${pkgver} + ./autogen.sh + ./configure \ + --prefix=/usr \ + --disable-manualupdatecheck \ + --disable-autoupdatecheck \ + --disable-static \ + --with-tinyxml=builtin + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} +md5sums=('837fbea08366b9f9de02b1671994697e') diff --git a/community/filezilla/filezilla.install b/community/filezilla/filezilla.install new file mode 100644 index 000000000..1a05f573e --- /dev/null +++ b/community/filezilla/filezilla.install @@ -0,0 +1,11 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} -- cgit v1.2.3-54-g00ecf