diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-05-28 02:41:15 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-06-03 08:00:05 +0700 |
commit | 101da1ea2b2108cb469657aa132015d911f73f81 (patch) | |
tree | 94ec3f219b554d8e9341c1a0a975b285e18b2f28 | |
parent | a8b29ad52811cf0aa5f88f9a498ebaa6cc28acc5 (diff) |
system/setconf: Added (configuration utility)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | system/setconf/README | 2 | ||||
-rw-r--r-- | system/setconf/setconf.SlackBuild | 64 | ||||
-rw-r--r-- | system/setconf/setconf.info | 10 | ||||
-rw-r--r-- | system/setconf/slack-desc | 19 |
4 files changed, 95 insertions, 0 deletions
diff --git a/system/setconf/README b/system/setconf/README new file mode 100644 index 000000000000..42f55f0d1886 --- /dev/null +++ b/system/setconf/README @@ -0,0 +1,2 @@ +setconf is a small utility that can be used for changing settings in +configuration textfiles. diff --git a/system/setconf/setconf.SlackBuild b/system/setconf/setconf.SlackBuild new file mode 100644 index 000000000000..b6e41c43cfd2 --- /dev/null +++ b/system/setconf/setconf.SlackBuild @@ -0,0 +1,64 @@ +#!/bin/sh + +# Slackware build script for setconf + +# Copyright 2017 Willy Sudiarto Raharjo <willysr@slackbuilds.org> +# 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=setconf +VERSION=${VERSION:-0.7.4} +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.xz +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,man/man1} +cp setconf.py $PKG/usr/bin/setconf +cp setconf.1.gz $PKG/usr/man/man1/ + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp COPYING $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/system/setconf/setconf.info b/system/setconf/setconf.info new file mode 100644 index 000000000000..5cc42f6e0888 --- /dev/null +++ b/system/setconf/setconf.info @@ -0,0 +1,10 @@ +PRGNAM="setconf" +VERSION="0.7.4" +HOMEPAGE="http://setconf.roboticoverlords.org/" +DOWNLOAD="http://setconf.roboticoverlords.org/setconf-0.7.4.tar.xz" +MD5SUM="f60a0afd5d90b58d73cc84da2e034dd9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Willy Sudiarto Raharjo" +EMAIL="willysr@slackbuilds.org" diff --git a/system/setconf/slack-desc b/system/setconf/slack-desc new file mode 100644 index 000000000000..fa4eff122370 --- /dev/null +++ b/system/setconf/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------------------------------------------------------| +setconf: setconf (configuration utility) +setconf: +setconf: setconf is a small utility that can be used for changing settings in +setconf: configuration textfiles. +setconf: +setconf: Project URL: http://setconf.roboticoverlords.org/ +setconf: +setconf: +setconf: +setconf: +setconf: |