mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/filezilla: Updated for version 3.3.3. New Maintainer.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
84e08cf916
commit
8f0b0a8ed0
2 changed files with 12 additions and 13 deletions
|
@ -2,6 +2,7 @@
|
|||
# Slackware build script for filezilla
|
||||
|
||||
# Copyright 2007-2009 Grigorios Bouzakis <grbzks@xsmail.com>
|
||||
# Copyright 2010 Willy Sudiarto Raharjo <willysr@slackware-id.org>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Permission to use, copy, modify, and distribute this software for any purpose
|
||||
|
@ -20,16 +21,14 @@
|
|||
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=filezilla
|
||||
VERSION=${VERSION:-3.3.1}
|
||||
VERSION=${VERSION:-3.3.3}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
@ -53,7 +52,7 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README"
|
||||
DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README GPL.html"
|
||||
|
||||
set -e
|
||||
|
||||
|
@ -81,6 +80,8 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--disable-static \
|
||||
--disable-manualupdatecheck \
|
||||
--disable-autoupdatecheck \
|
||||
--enable-locales \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
|
@ -89,10 +90,8 @@ make install DESTDIR=$PKG
|
|||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="filezilla"
|
||||
VERSION="3.3.1"
|
||||
VERSION="3.3.3"
|
||||
HOMEPAGE="http://filezilla-project.org/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/filezilla/FileZilla_3.3.1_src.tar.bz2"
|
||||
MD5SUM="3454defa3bdb137bf69fc73495231ca1"
|
||||
DOWNLOAD="http://kent.dl.sourceforge.net/project/filezilla/FileZilla_Client/3.3.3/FileZilla_3.3.3_src.tar.bz2"
|
||||
MD5SUM="e98949facf23299ff791e046929852a7"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Grigorios Bouzakis"
|
||||
EMAIL="grbzks@xsmail.com"
|
||||
MAINTAINER="Willy Sudiarto Raharjo"
|
||||
EMAIL="willysr@slackware-id.org"
|
||||
APPROVED="Erik Hanson"
|
||||
|
|
Loading…
Reference in a new issue