gtk/filezilla/PKGBUILD

36 lines
1.0 KiB
Bash
Raw Normal View History

2013-04-28 06:49:48 +08:00
pkgname=filezilla
2016-10-02 10:52:31 +08:00
pkgver=3.22.0
2016-02-12 21:24:39 +08:00
pkgrel=1
2013-04-28 06:49:48 +08:00
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
arch=('x86_64')
2016-08-04 14:50:32 +08:00
url="https://filezilla-project.org/"
2013-04-28 06:49:48 +08:00
license=('GPL')
2016-10-02 10:52:31 +08:00
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls' 'libfilezilla>=0.7.0')
2013-09-01 20:17:55 +08:00
install=${pkgname}.install
2015-11-30 00:07:13 +08:00
screenshot="https://filezilla-project.org/images/screenshots/fz3_linux_main.png"
2016-06-28 14:02:08 +08:00
source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2")
2016-10-02 10:52:31 +08:00
sha256sums=('60b48314f356f682712c9cec0a27c6469bf888da781c658054bb7f0b23dcfacf')
2015-09-17 08:48:11 +08:00
2013-04-28 06:49:48 +08:00
build() {
cd "${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
2013-04-28 06:49:48 +08:00
--disable-manualupdatecheck \
--disable-autoupdatecheck \
--disable-static \
2015-08-25 20:44:33 +08:00
--enable-locales \
2015-11-02 12:59:54 +08:00
--enable-gnutlssystemciphers \
2015-08-25 20:44:33 +08:00
--with-pugixml=builtin
2013-04-28 06:49:48 +08:00
make
}
package() {
2013-09-01 20:17:55 +08:00
cd "${pkgname}-${pkgver}"
2013-05-19 15:56:26 +08:00
2013-09-01 20:17:55 +08:00
make DESTDIR="${pkgdir}" install
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
install -Dm644 {AUTHORS,ChangeLog,README} "${pkgdir}/usr/share/doc/${pkgname}/"
2013-04-28 06:49:48 +08:00
}