diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2010-07-15 20:01:23 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-15 20:12:37 -0500 |
commit | 8f0b0a8ed0109d44b716158d7c741b2f6278c616 (patch) | |
tree | 18d1cf251a5f60d3a124180f0c1238aee071e06e /network/filezilla/filezilla.SlackBuild | |
parent | 84e08cf916bd742b5df7df75b0f35b3134b85317 (diff) | |
download | slackbuilds-8f0b0a8ed0109d44b716158d7c741b2f6278c616.tar.gz |
network/filezilla: Updated for version 3.3.3. New Maintainer.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'network/filezilla/filezilla.SlackBuild')
-rw-r--r-- | network/filezilla/filezilla.SlackBuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/network/filezilla/filezilla.SlackBuild b/network/filezilla/filezilla.SlackBuild index 0de805c7e6..728289b717 100644 --- a/network/filezilla/filezilla.SlackBuild +++ b/network/filezilla/filezilla.SlackBuild @@ -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 |