From 6961ef8692687242020aa572e161395ffa483e34 Mon Sep 17 00:00:00 2001 From: Petr Kletecka Date: Sat, 12 Oct 2019 07:35:48 +0700 Subject: misc/twa: Added (Tiny Web Auditor). Signed-off-by: Willy Sudiarto Raharjo --- misc/twa/README | 1 + misc/twa/slack-desc | 19 +++++++++++++ misc/twa/twa.SlackBuild | 73 +++++++++++++++++++++++++++++++++++++++++++++++++ misc/twa/twa.info | 10 +++++++ 4 files changed, 103 insertions(+) create mode 100644 misc/twa/README create mode 100644 misc/twa/slack-desc create mode 100644 misc/twa/twa.SlackBuild create mode 100644 misc/twa/twa.info (limited to 'misc') diff --git a/misc/twa/README b/misc/twa/README new file mode 100644 index 0000000000..f155a10fcd --- /dev/null +++ b/misc/twa/README @@ -0,0 +1 @@ +A tiny web auditor with strong opinions. diff --git a/misc/twa/slack-desc b/misc/twa/slack-desc new file mode 100644 index 0000000000..6e05e0e0d4 --- /dev/null +++ b/misc/twa/slack-desc @@ -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------------------------------------------------------| +twa: twa (A tiny web auditor with strong opinions) +twa: +twa: A tiny web auditor with strong opinions. +twa: +twa: +twa: +twa: +twa: website: https://github.com/trailofbits/twa +twa: +twa: +twa: diff --git a/misc/twa/twa.SlackBuild b/misc/twa/twa.SlackBuild new file mode 100644 index 0000000000..9591252bce --- /dev/null +++ b/misc/twa/twa.SlackBuild @@ -0,0 +1,73 @@ +#!/bin/sh + +# Slackware build script for twa + +# Copyright 2019 Petr Kletecka petr@kle.cz +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=twa +VERSION=${VERSION:-1.8.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 twa > $PKG/usr/bin/twa +chmod oug+x $PKG/usr/bin/twa + +cat tscore > $PKG/usr/bin/tscore +chmod oug+x $PKG/usr/bin/tscore + +mkdir -p $PKG/usr/man/man1 +cat twa.1 | gzip > $PKG/usr/man/man1/twa.1.gz + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + README.md LICENSE CONTRIBUTING.md \ + $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} diff --git a/misc/twa/twa.info b/misc/twa/twa.info new file mode 100644 index 0000000000..7e305da6bc --- /dev/null +++ b/misc/twa/twa.info @@ -0,0 +1,10 @@ +PRGNAM="twa" +VERSION="1.8.0" +HOMEPAGE="https://github.com/trailofbits/twa" +DOWNLOAD="https://github.com/trailofbits/twa/archive/1.8.0/twa-1.8.0.tar.gz" +MD5SUM="8b89bb01cb5e9e17a54ce62878526248" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Petr Kletecka" +EMAIL="petr@kle.cz" -- cgit v1.2.3