mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
35 lines
1004 B
Bash
35 lines
1004 B
Bash
pkgname=filezilla
|
|
pkgver=3.39.0
|
|
pkgrel=1
|
|
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
|
|
arch=('x86_64')
|
|
url="https://filezilla-project.org/"
|
|
license=('GPL')
|
|
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls' 'libfilezilla' 'libnotify')
|
|
screenshot="https://filezilla-project.org/images/screenshots/fz3_linux_main.png"
|
|
source=("https://download.filezilla-project.org/client/FileZilla_${pkgver}_src.tar.bz2")
|
|
sha256sums=('fb515e93775e5ad94ff2755b39605b62b3e8fcfc1125757f411d8f580d16444f')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-manualupdatecheck \
|
|
--disable-autoupdatecheck \
|
|
--disable-static \
|
|
--enable-locales \
|
|
--enable-gnutlssystemciphers \
|
|
--with-pugixml=builtin
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
|
|
install -Dm644 {AUTHORS,ChangeLog,README} "${pkgdir}/usr/share/doc/${pkgname}/"
|
|
}
|