gtk/filezilla/PKGBUILD

35 lines
1004 B
Bash
Raw Normal View History

2013-04-28 06:49:48 +08:00
pkgname=filezilla
2018-10-29 16:15:27 +08:00
pkgver=3.38.1
2018-02-24 10:23:19 +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')
2017-11-07 06:55:55 +08:00
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls' 'libfilezilla' 'libnotify')
2015-11-30 00:07:13 +08:00
screenshot="https://filezilla-project.org/images/screenshots/fz3_linux_main.png"
2018-09-18 07:40:27 +08:00
source=("https://download.filezilla-project.org/client/FileZilla_${pkgver}_src.tar.bz2")
2018-10-29 16:15:27 +08:00
sha256sums=('1a86becc4a8bb70ff316522217818364028b95224fc728e3bb676ebee98d0cde')
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
}