network/filezilla: Updated for version 3.14.1.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2015-12-27 11:34:05 +07:00
parent 264004c515
commit 2f117df258
3 changed files with 12 additions and 17 deletions

View file

@ -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.

View file

@ -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

View file

@ -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"