create new trunk/tools directory; import SlackBuild, doinst.sh, slack-desc, and makechangelog which are tools used to create sbopkg packages

This commit is contained in:
chess.griffin 2008-09-10 13:43:52 +00:00
parent 868ed2cf99
commit 9564525819
4 changed files with 105 additions and 0 deletions

18
tools/doinst.sh Normal file
View file

@ -0,0 +1,18 @@
#!/bin/sh
#
# $Id$
#
# Sbopkg doinst.sh
config() {
NEW="$1"
OLD="`dirname $NEW`/`basename $NEW .new`"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/sbopkg/sbopkg.conf.new

8
tools/makechangelog Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
#
# $Id$
#
# Build ChangeLog for package inclusion using the svn2cl Perl script
# (http://ch.tudelft.nl/~arthur/svn2cl)
sh ~/svn2cl/svn2cl.sh ~/sbopkg

60
tools/sbopkg.SlackBuild Executable file
View file

@ -0,0 +1,60 @@
#!/bin/sh
# $Id: sbopkg.SlackBuild 114 2008-03-23 18:42:55Z chess $
# Slackware build script for Sbopkg
# Written by Chess Griffin <chess@chessgriffin.com>. Based on the
# SlackBuilds.org template.
PRGNAM=sbopkg
VERSION=${VERSION:-0.10.0}
ARCH=${ARCH:-noarch}
BUILD=${BUILD:-1}
CWD=$(pwd)
TMP=${TMP:-/tmp/build}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -e # Exit on most errors
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 . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
mkdir -p $PKG/etc/sbopkg
cp etc/sbopkg/* $PKG/etc/sbopkg
mkdir -p $PKG/usr/bin
cp usr/bin/* $PKG/usr/bin
mkdir -p $PKG/usr/man
cp -a usr/man/* $PKG/usr/man
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a usr/doc/README $PKG/usr/doc/$PRGNAM-$VERSION
cp -a usr/doc/TODO $PKG/usr/doc/$PRGNAM-$VERSION
cp -a usr/doc/UPDATELIST-DEBUGGING $PKG/usr/doc/$PRGNAM-$VERSION
cp -a usr/doc/ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD.tgz

19
tools/slack-desc Normal file
View file

@ -0,0 +1,19 @@
# $Id: slack-desc 110 2008-03-23 03:50:27Z chess $
#
## 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 ':'.
|-----handy-ruler------------------------------------------------------|
sbopkg: sbopkg (SlackBuilds.org Package Browser)
sbopkg:
sbopkg: Sbopkg is a command-line and dialog-based tool to
sbopkg: interact with the SlackBuilds.org repository, a
sbopkg: collection of third-party SlackBuild scripts to
sbopkg: build Slackware packages.
sbopkg:
sbopkg: Homepage: http://code.google.com/p/sbopkg
sbopkg: