blob: c3301db32a90b4b78299aa2ed5bd08edf1f26fe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=filezilla
pkgver=3.42.1
pkgrel=0
pkgdesc="FTP Client"
url="https://filezilla-project.org"
arch="all"
license="GPL-2.0-or-later"
makedepends="libfilezilla-dev>=0.16.0 wxgtk-dev libidn-dev nettle-dev gnutls-dev
pugixml-dev xdg-utils gtk+2.0-dev sqlite-dev"
subpackages="$pkgname-doc $pkgname-lang"
source="https://download.filezilla-project.org/client/FileZilla_${pkgver}_src.tar.bz2"
build() {
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--without-dbus \
--with-wx-config=/usr/bin/wx-config-gtk3 \
--disable-manualupdatecheck \
--disable-autoupdatecheck
make
}
package() {
make DESTDIR="$pkgdir" install
}
check() {
make check
}
sha512sums="0dc9b3a6347803f60a71c56bb759700fb2b1b019dc29794aa639ce892ccd1ae53041112987f9d5e8e75ec7e07702a5aac8e1c131796bbc5f210d75d286276deb FileZilla_3.42.1_src.tar.bz2"
|