mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 18:12:13 +08:00
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
pkgname=filezilla
|
|
pkgver=3.14.1
|
|
pkgrel=1
|
|
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
|
|
arch=('x86_64')
|
|
url="http://filezilla-project.org/"
|
|
license=('GPL')
|
|
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls')
|
|
install=${pkgname}.install
|
|
source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2"
|
|
"http://kde-look.org/CONTENT/content-files/141546-filezilla-oxygen-theme.tar.gz")
|
|
sha256sums=('b10871b6ced5f52062b44deda037edb8a38090b226a018b9b64b1a1feb59d46c'
|
|
'3943d1f650e6d1bece2ba1fdd84d013b9f8fabdcfc6845f9d62e5d4673a21740')
|
|
|
|
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/filezilla/resources/oxygen"
|
|
cp -dpr --no-preserve=ownership "${srcdir}/oxygen" "${pkgdir}/usr/share/filezilla/resources/"
|
|
|
|
install -dm755 "${pkgdir}/usr/share/doc/${pkgname}"
|
|
install -Dm644 {AUTHORS,ChangeLog,README} "${pkgdir}/usr/share/doc/${pkgname}/"
|
|
}
|