mirror of
https://github.com/sbopkg/sbopkg
synced 2024-11-09 19:50:25 +03:00
76e6c5ddb1
A cluster of changes related to creating symlinks in the /etc/{renames,repos}.d directories that point to the corresponding README in sbopkg's docdir and then generally updating most build-related files and getting it all documented. * 50-default: renamed to 50-default.renames * NEWS: note symlink docs and rename issues * README-renames: update to reflect new default filename and the fact that the files must end in '.renames'. * sbopkg.conf.5, sbopkg.8: update to reflect the new renames stuff (and the earlier repo file/dir-related changes I forgot to document there). * sbopkg: get_new_name(), get_old_name(): have grep only look through *.renames files and not, say, symlinks to READMEs. * doinst.sh: bring into alignment with the current SBo template. * tools/sbopkg.SlackBuild: make links from README-repos and README-renames to READMEs in the corresponding /etc/sbopkg/*.d directories. * tools/slack-desc: bring into alignment with the current SBo template. * tools/sspm: update address, add printe() and use it.
62 lines
1.5 KiB
Bash
62 lines
1.5 KiB
Bash
#!/bin/sh
|
|
|
|
# $Id$
|
|
|
|
# Slackware build script for sbopkg
|
|
|
|
# Written by Chess Griffin <chess@chessgriffin.com>.
|
|
# Based on the SlackBuilds.org template.
|
|
|
|
PRGNAM=sbopkg
|
|
VERSION=${VERSION:-0.34.1}
|
|
ARCH=${ARCH:-noarch}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_cng}
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
|
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/build}
|
|
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 . \
|
|
\( -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 -a etc/sbopkg/* $PKG/etc/sbopkg
|
|
mv $PKG/etc/sbopkg/sbopkg.conf $PKG/etc/sbopkg/sbopkg.conf.new
|
|
|
|
mkdir -p $PKG/usr/sbin
|
|
cp usr/sbin/* $PKG/usr/sbin
|
|
|
|
mkdir -p $PKG/usr/man
|
|
cp -a usr/man/* $PKG/usr/man
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a usr/doc/* $PKG/usr/doc/$PRGNAM-$VERSION
|
|
ln -s /usr/doc/$PRGNAM-$VERSION/README-repos $PKG/etc/$PRGNAM/repos.d/README
|
|
ln -s /usr/doc/$PRGNAM-$VERSION/README-renames \
|
|
$PKG/etc/$PRGNAM/renames.d/README
|
|
cp -a $CWD/sbopkg.SlackBuild $PKG/usr/doc/$PRGNAM-$VERSION
|
|
chown root:root $PKG/usr/doc/$PRGNAM-$VERSION/sbopkg.SlackBuild
|
|
|
|
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$TAG.$PKGTYPE
|