mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
network/fwbuilder: Updated for version 4.1.3.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
793c0e4819
commit
c4bff47d34
2 changed files with 9 additions and 10 deletions
|
@ -6,7 +6,7 @@
|
|||
# Derived from Slackware's Slackbuilds.
|
||||
#
|
||||
# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, Minnesota, USA
|
||||
# Copyright 2010 David Somero (dsomero@hotmail.com) Athens, TN, USA
|
||||
# Copyright 2010-2011 David Somero (dsomero@hotmail.com) Athens, TN, USA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -27,16 +27,14 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=fwbuilder
|
||||
VERSION=4.0.2
|
||||
VERSION=4.1.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
|
||||
|
@ -79,6 +77,7 @@ CFLAGS="$SLKCFLAGS" \
|
|||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./autogen.sh \
|
||||
--prefix=/usr \
|
||||
--mandir=/usr/man \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--with-docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
@ -89,11 +88,11 @@ make INSTALL_ROOT=$PKG install
|
|||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
# Move incorrectly installed man pages; stupid configure overrides our settings
|
||||
# Move incorrectly installed man pages; stupid configure overrides our settings.
|
||||
mv $PKG/usr/share/man $PKG/usr/
|
||||
|
||||
# Compress man pages
|
||||
( cd $PKG/usr/man ; find . -type f -exec gzip -9 {} \; )
|
||||
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
|
||||
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="fwbuilder"
|
||||
VERSION="4.0.2"
|
||||
VERSION="4.1.3"
|
||||
HOMEPAGE="http://www.fwbuilder.org/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/fwbuilder/fwbuilder-4.0.2.tar.gz"
|
||||
MD5SUM="1b9db7197f10224049f21b68ab6632e7"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/fwbuilder/fwbuilder-4.1.3.tar.gz"
|
||||
MD5SUM="7cb6d50ce6f02b485525405bd00d8c33"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="David Somero"
|
||||
|
|
Loading…
Reference in a new issue