mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-03 21:27:14 +08:00
36 lines
1022 B
Bash
36 lines
1022 B
Bash
pkgname=filezilla
|
|
pkgver=3.7.0.1
|
|
pkgrel=1
|
|
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
|
|
arch=('x86_64')
|
|
url="http://filezilla-project.org/"
|
|
license=('GPL')
|
|
depends=('dbus-core' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'filesystem-extra')
|
|
install=filezilla.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")
|
|
md5sums=('cb07cf02ee4cc767e10e8a022ad0ce0d'
|
|
'cc6b7f92cab532d2eb88eb7d931de756')
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
./autogen.sh
|
|
./configure \
|
|
--prefix=/extra/usr \
|
|
--disable-manualupdatecheck \
|
|
--disable-autoupdatecheck \
|
|
--disable-static \
|
|
--with-tinyxml=builtin
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
mkdir -p $pkgdir/extra/usr/share/filezilla/resources
|
|
cp -rf $srcdir/oxygen $pkgdir/extra/usr/share/filezilla/resources/
|
|
}
|