diff options
author | J Pipkin <j@dawnrazor.net> | 2013-01-16 02:28:00 -0600 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2013-01-16 02:28:00 -0600 |
commit | e90c0545cc7a498599e074075b0cfb4269eca38a (patch) | |
tree | 2918275adabad89536eda56b0f9c4f62341d6bfc /slackbuild | |
parent | fe877256d11b044b70bb00fa6a2a24bd3e9f2f8c (diff) | |
download | sbotools-e90c0545cc7a498599e074075b0cfb4269eca38a.tar.xz |
added slackbuild
Diffstat (limited to 'slackbuild')
-rw-r--r-- | slackbuild/sbotools/README | 12 | ||||
-rwxr-xr-x | slackbuild/sbotools/sbotools.SlackBuild | 89 | ||||
-rw-r--r-- | slackbuild/sbotools/sbotools.info | 10 | ||||
-rw-r--r-- | slackbuild/sbotools/slack-desc | 11 |
4 files changed, 122 insertions, 0 deletions
diff --git a/slackbuild/sbotools/README b/slackbuild/sbotools/README new file mode 100644 index 0000000..557db68 --- /dev/null +++ b/slackbuild/sbotools/README @@ -0,0 +1,12 @@ +sbotools (ports-like interface to slackbuilds.org) + +sbotools is a set of perl scripts providing a ports-like automation +interface to slackbuilds.org. Its features include requirement handling +and the ability to handle 32-bit and compat32 builds on multilib +x86_64 systems. + +There are man pages for each of the sbo* commands, and more documentation, +as well as online versions of the man pages, can be found at +http://dawnrazor.net/sbotools/documentation/ + +http://dawnrazor.net/sbotools diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild new file mode 100755 index 0000000..a9a1d2c --- /dev/null +++ b/slackbuild/sbotools/sbotools.SlackBuild @@ -0,0 +1,89 @@ +#!/usr/bin/bash +# +# Slackware build script for <sbotools> +# Written by Jacob Pipkin <j@dawnrazor.net> +# Licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING> + +PRGNAM=sbotools +VERSION=${VERSION:-1.4} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +SRCNAM=$PRGNAM + +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 $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.xz +cd $SRCNAM-$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 {} \; + +( cd SBO-Lib + perl Makefile.PL \ + PREFIX=/usr \ + INSTALLDIRS=site \ + INSTALLVENDORMAN1DIR=/usr/man/man1 \ + INSTALLVENDORMAN3DIR=/usr/man/man3 + make + make test + make install DESTDIR=$PKG +) + +SCRIPTS="check clean config find install remove snap upgrade" +MANS="man1 man5" + +mkdir -p $PKG/usr/sbin +for i in $SCRIPTS; do + cp sbo$i $PKG/usr/sbin/sbo$i +done + +for i in $MANS; do + mkdir -p $PKG/usr/man/$i + cp $i/* $PKG/usr/man/$i/ +done + +# Compress man pages +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz; + rm $i ; done + +# Remove perllocal.pod and other special files that don't need to be installed, +# as they will overwrite what's already on the system. +find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" \ + | xargs rm -f || true + +# Remove empty directories +find $PKG -depth -type d -empty -delete || true + +# Copy program documentation into the package +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib +cp -a \ + SBO-Lib/README \ + $PKG/usr/doc/$PRGNAM-$VERSION/SBO-Lib +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +if which xz >/dev/null 2>&1; then + PKGTYPE="txz" +elif which bzip2 >/dev/null 2>&1; then + PKGTYPE="tbz" +fi + +# Make the package +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-noarch-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/slackbuild/sbotools/sbotools.info b/slackbuild/sbotools/sbotools.info new file mode 100644 index 0000000..024adc1 --- /dev/null +++ b/slackbuild/sbotools/sbotools.info @@ -0,0 +1,10 @@ +PRGNAM="sbotools" +VERSION="1.5" +HOMEPAGE="http://dawnrazor.net/sbotools/" +DOWNLOAD="http://dawnrazor.net/wp-content/uploads/2013/01/sbotools-1.5.tar.gz" +MD5SUM="67e7d6991b5f5cdc85ba8c3583ab21fe" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="perl-Sort-Versions" +MAINTAINER="Jacob Pipkin" +EMAIL="j@dawnrazor.net" diff --git a/slackbuild/sbotools/slack-desc b/slackbuild/sbotools/slack-desc new file mode 100644 index 0000000..6ffd0ab --- /dev/null +++ b/slackbuild/sbotools/slack-desc @@ -0,0 +1,11 @@ +sbotools: sbotools (ports-like interface to slackbuilds.org) +sbotools: +sbotools: sbotools is a set of perl scripts providing a ports-like automation +sbotools: interface to slackbuilds.org. Its features include requirement +sbotools: handling and the ability to handle 32-bit and compat32 builds on +sbotools: multilib x86_64 systems. +sbotools: +sbotools: http://dawnrazor.net/sbotools +sbotools: +sbotools: +sbotools: |