From e01a31e088bce75ec62d243f5d4101431b11f204 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Sun, 26 Oct 2014 14:16:54 +0100 Subject: [PATCH] Added pwauth for ownCloud --- ap/pwauth/pwauth.SlackBuild | 78 +++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100755 ap/pwauth/pwauth.SlackBuild diff --git a/ap/pwauth/pwauth.SlackBuild b/ap/pwauth/pwauth.SlackBuild new file mode 100755 index 00000000..5f4878d6 --- /dev/null +++ b/ap/pwauth/pwauth.SlackBuild @@ -0,0 +1,78 @@ +#!/bin/sh -x + +# variables +CWD=$(pwd) + +PRGNAM=$(basename $CWD) +VERSION=${VERSION:-$(date +"%Y.%m.%d_%H.%M")} +ARCH=${ARCH:-$(uname -m)} +BUILD=1 + +TAG=cyco +TMP=/tmp/$TAG +PKG=$TMP/pkg-$PRGNAM +OUTPUT=/tmp + +REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM + +PREFIX=/usr + +SLCKFLAGS=" -O " + +# nettoyage préalable +rm -fr $PKG $TMP/$PRGNAM + +mkdir -p $PKG + +# mise en place +cd $TMP +if [ ! -e $REPOSITORY ]; then + svn checkout http://pwauth.googlecode.com/svn/trunk/pwauth $REPOSITORY +else + ( cd $REPOSITORY + svn update + ) +fi +cp -R $REPOSITORY $TMP/$PRGNAM + +cd $TMP/$PRGNAM + +# installation +make +mkdir -p $PKG$PREFIX/sbin/ +mv pwauth unixgroup $PKG$PREFIX/sbin/ + +# correction +cd $PKG +chown -R root:root * + +find $PKG -name \.git\* -exec rm -fr {} \; + +[ -d $PKG/usr/man ] && find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \; + +# Strip binaries +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + + +# embaumement +mkdir -p $PKG/install +cat < $PKG/install/slack-desc +$PRGNAM: $PRGNAM (A Unix Authentication Tool) +$PRGNAM: +$PRGNAM: Pwauth is an authenticator designed to be used with mod_auth_external +$PRGNAM: or mod_authnz_external and the Apache HTTP daemon to support reasonably +$PRGNAM: secure web authentication out of the system password database on most +$PRGNAM: versions of Unix. +$PRGNAM: +$PRGNAM: +$PRGNAM: +$PRGNAM: https://code.google.com/p/pwauth/ +$PRGNAM: +EOF + +# empaquetage +cd $PKG +makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | sed 's/-//g')-$ARCH-$BUILD$TAG.txz