mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/arptables: Updated for version 0.0.3-4.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
11934d140c
commit
b9ad855296
2 changed files with 8 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for arptables
|
||||
# Written by Menno E. Duursma
|
||||
# Written by Menno Duursma
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
# This program is free software. It comes without any warranty.
|
||||
|
@ -13,12 +13,10 @@ VERSION=0.0.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
|
||||
|
@ -47,9 +45,9 @@ set -e # exit on most errors
|
|||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-v$VERSION-3
|
||||
tar xvf $CWD/$PRGNAM-v$VERSION-3.tar.gz
|
||||
cd $PRGNAM-v$VERSION-3
|
||||
rm -rf $PRGNAM-v$VERSION-4
|
||||
tar xvf $CWD/$PRGNAM-v$VERSION-4.tar.gz
|
||||
cd $PRGNAM-v$VERSION-4
|
||||
|
||||
chown -R root:root .
|
||||
find . \
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="arptables"
|
||||
VERSION="0.0.3"
|
||||
HOMEPAGE="http://ebtables.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/ebtables/arptables-v0.0.3-3.tar.gz"
|
||||
MD5SUM="3f4a8b62920a46d746ab892be7de088f"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/ebtables/arptables-v0.0.3-4.tar.gz"
|
||||
MD5SUM="1d4ab05761f063b0751645d8f2b8f8e5"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Menno E. Duursma"
|
||||
MAINTAINER="Menno Duursma"
|
||||
EMAIL="druiloor@zonnet.nl"
|
||||
APPROVED="dsomero,rworkman"
|
||||
APPROVED="Erik Hanson"
|
||||
|
|
Loading…
Reference in a new issue