mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/swaks: Added (Swiss Army Knife for SMTP).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b2c81e749c
commit
96f47475f9
4 changed files with 77 additions and 0 deletions
2
network/swaks/README
Normal file
2
network/swaks/README
Normal file
|
@ -0,0 +1,2 @@
|
|||
Swaks is a featureful, flexible, scriptable, transaction-oriented
|
||||
SMTP test tool written and maintained by John Jetmore.
|
19
network/swaks/slack-desc
Normal file
19
network/swaks/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
swaks: swaks (Swiss Army Knife for SMTP)
|
||||
swaks:
|
||||
swaks: Swaks is a featureful, flexible, scriptable, transaction-oriented
|
||||
swaks: SMTP test tool written and maintained by John Jetmore.
|
||||
swaks:
|
||||
swaks:
|
||||
swaks:
|
||||
swaks: website: http://www.jetmore.org/john/code/swaks/
|
||||
swaks:
|
||||
swaks:
|
||||
swaks:
|
46
network/swaks/swaks.SlackBuild
Normal file
46
network/swaks/swaks.SlackBuild
Normal file
|
@ -0,0 +1,46 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for swaks
|
||||
|
||||
# Petr Kletecka petr@kle.cz <2017>
|
||||
|
||||
PRGNAM=swaks
|
||||
VERSION=${VERSION:-20170101.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/${PRGNAM}-${VERSION}.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
cat swaks > $PKG/usr/bin/swaks
|
||||
chmod oug+x $PKG/usr/bin/swaks
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README LICENSE doc/* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
network/swaks/swaks.info
Normal file
10
network/swaks/swaks.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="swaks"
|
||||
VERSION="20170101.0"
|
||||
HOMEPAGE="http://www.jetmore.org/john/code/swaks/"
|
||||
DOWNLOAD="http://www.jetmore.org/john/code/swaks/files/swaks-20170101.0.tar.gz"
|
||||
MD5SUM="d01a94a510de0c8f56605d4e857969b9"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Petr Kletecka"
|
||||
EMAIL="petr@kle.cz"
|
Loading…
Reference in a new issue