diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-12-27 11:34:05 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 2f117df25833368760f61bf990f5e1995e1fe3b7 (patch) | |
tree | b94996983c9dcee1e9342d4291917cbf9c5f8f8b /network | |
parent | 264004c515d99d54b7f963a2038999e0ae406b88 (diff) | |
download | slackbuilds-2f117df25833368760f61bf990f5e1995e1fe3b7.tar.gz |
network/filezilla: Updated for version 3.14.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/filezilla/README | 6 | ||||
-rw-r--r-- | network/filezilla/filezilla.SlackBuild | 17 | ||||
-rw-r--r-- | network/filezilla/filezilla.info | 6 |
3 files changed, 12 insertions, 17 deletions
diff --git a/network/filezilla/README b/network/filezilla/README index 961e99f226..c5a2911d60 100644 --- a/network/filezilla/README +++ b/network/filezilla/README @@ -2,6 +2,6 @@ FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive graphical user interface. -tinyxml is an optional dependency - to use an installed version of tinyxml, -run the script as "TINYXML=yes ./filezilla.SlackBuild" - otherwise, the -build will use an included copy of tinyxml. +pugixml is an optional dependency - to use an installed version of pugixml, +run the script as "PUGIXML=yes ./filezilla.SlackBuild" - otherwise, the +build will use an included copy of pugixml. diff --git a/network/filezilla/filezilla.SlackBuild b/network/filezilla/filezilla.SlackBuild index a5eb8f9fcd..e07248951e 100644 --- a/network/filezilla/filezilla.SlackBuild +++ b/network/filezilla/filezilla.SlackBuild @@ -21,7 +21,7 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=filezilla -VERSION=${VERSION:-3.12.0.2} +VERSION=${VERSION:-3.14.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -54,11 +54,11 @@ fi DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README GPL.html" -# Check if we have tinyxml package -if [ "${TINYXML:-no}" = "yes" ]; then - tinyxml="" +# Check if we have pugixml package +if [ "${PUGIXML:-no}" = "yes" ]; then + pugixml="--with-pugixml=system" else - tinyxml="--with-tinyxml=builtin" + pugixml="--with-pugixml=builtin" fi set -e @@ -76,11 +76,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# Added LDFLAGS to make it compileable, thanks to LQ -# http://www.linuxquestions.org/questions/slackware-14/libsndfile-from-slackbuilds-org-fails-to-build-695456/ -LDFLAGS="-ldl" \ -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ @@ -92,7 +87,7 @@ CXXFLAGS="$SLKCFLAGS" \ --disable-manualupdatecheck \ --disable-autoupdatecheck \ --enable-locales \ - $tinyxml \ + $pugixml \ --build=$ARCH-slackware-linux make diff --git a/network/filezilla/filezilla.info b/network/filezilla/filezilla.info index 5f3956da2c..b273091a91 100644 --- a/network/filezilla/filezilla.info +++ b/network/filezilla/filezilla.info @@ -1,8 +1,8 @@ PRGNAM="filezilla" -VERSION="3.12.0.2" +VERSION="3.14.1" HOMEPAGE="http://filezilla-project.org/" -DOWNLOAD="http://downloads.sourceforge.net/filezilla/FileZilla_3.12.0.2_src.tar.bz2" -MD5SUM="7c5f3b8acd52777bab164ddae6b2f784" +DOWNLOAD="http://downloads.sourceforge.net/filezilla/FileZilla_3.14.1_src.tar.bz2" +MD5SUM="034e51344c866f4ecab75be80f71ba3b" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="wxGTK3" |