blob: b96e93c80b45fb206137486038962f5e648797f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Client FTP, FTPS et SFTP
# URL: http://filezilla-project.org/
# Maintainer: NuTyX Core Team
# Packager: piernov <piernov@piernov.org>
# Depends on: dbus, wxgtk, libidn, hicolor-icon-theme, gnutls, sqlite3
# Run on: dbus,wxgtk,libidn,hicolor-icon-theme,gnutls,sqlite3
name=filezilla
version=3.5.1
release=1
source=(http://downloads.sourceforge.net/filezilla/FileZilla_${version}_src.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-dbus \
--with-tinyxml=builtin
make
make DESTDIR=$PKG install
}
|