gtk/filezilla/PKGBUILD

41 lines
1.4 KiB
Bash
Raw Normal View History

2013-04-28 06:49:48 +08:00
pkgname=filezilla
2016-02-12 21:24:39 +08:00
pkgver=3.15.0.2
pkgrel=1
2013-04-28 06:49:48 +08:00
pkgdesc="Fast and reliable FTP, FTPS and SFTP client"
arch=('x86_64')
url="http://filezilla-project.org/"
license=('GPL')
2016-02-12 21:24:39 +08:00
depends=('dbus' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3' 'gnutls' 'libfilezilla')
2013-09-01 20:17:55 +08:00
install=${pkgname}.install
2015-11-30 00:07:13 +08:00
screenshot="https://filezilla-project.org/images/screenshots/fz3_linux_main.png"
2013-05-19 15:56:26 +08:00
source=("http://downloads.sourceforge.net/project/filezilla/FileZilla_Client/${pkgver}/FileZilla_${pkgver}_src.tar.bz2"
2015-03-30 07:48:52 +08:00
"http://kde-look.org/CONTENT/content-files/141546-filezilla-oxygen-theme.tar.gz")
2016-02-12 21:24:39 +08:00
sha256sums=('333c46709506b2777047556aa9ee791b404e5f8b94236b3c8a789c1dc09f7c4f'
2015-11-02 12:59:54 +08:00
'3943d1f650e6d1bece2ba1fdd84d013b9f8fabdcfc6845f9d62e5d4673a21740')
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
2013-04-28 06:49:48 +08:00
install -dm755 "${pkgdir}/usr/share/filezilla/resources/oxygen"
cp -dpr --no-preserve=ownership "${srcdir}/oxygen" "${pkgdir}/usr/share/filezilla/resources/"
2013-09-01 20:17:55 +08:00
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
}