system/daemonize: Added (run a program as a daemon)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robert Allen 2013-10-26 19:02:15 -05:00 committed by Robby Workman
parent 7009dc6a71
commit 85bdb6fd87
4 changed files with 113 additions and 0 deletions

7
system/daemonize/README Normal file
View file

@ -0,0 +1,7 @@
Daemonize allows you to run a command as a Unix daemon.
See man page for usage after installation.
Builds from hosted snapshot of git repo. See home page
to from daemonize.info for latest version info.

View file

@ -0,0 +1,77 @@
#!/bin/sh
# Slackware build script for daemonize
# Copyright 2013 Robert Allen <slacker@slaphappygeeks.com>
# All rights reserved, including Creator Endowed Unalienable Rights
#
# This script is placed into the public domain by the author
PRGNAM=daemonize
VERSION=1.7.4
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
BITS=32
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
BITS=32
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
BITS=64
fi
set -eu
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 .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--build=$ARCH-slackware-linux
make
make install INSTALL_MAN=/usr/man DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
gzip $PKG/usr/man/man1/daemonize.1
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README.md LICENSE.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}

View file

@ -0,0 +1,10 @@
PRGNAM="daemonize"
VERSION="1.7.4"
HOMEPAGE="http://software.clapper.org/daemonize/"
DOWNLOAD="http://slaphappygeeks.com/dl/daemonize-1.7.4.tar.gz"
MD5SUM="9283c03cd0d6a53003b785e52fdb214c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Robert Allen"
EMAIL="slacker@slaphappygeeks.com"

View 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------------------------------------------------------|
daemonize: daemonize (run a program as a daemon)
daemonize:
daemonize: daemonize allows you to run a program as a Unix daemon.
daemonize:
daemonize: Homepage: http://software.clapper.org/daemonize/
daemonize:
daemonize:
daemonize:
daemonize:
daemonize:
daemonize: