development/bashdb: Updated for version 3.1_0.09
This commit is contained in:
parent
0746f5ee03
commit
624d1b494e
|
@ -5,10 +5,9 @@ The purpose of the BASH debugger is to help you catch bugs in the act:
|
|||
|
||||
* Start your script, specifying anything that might affect its behavior.
|
||||
* Make your script stop on specified conditions.
|
||||
* Examine what has happened, when your script has stopped.
|
||||
* Examine what has happened when your script has stopped.
|
||||
* Change things in your script, so you can experiment with correcting the
|
||||
effects of one bug and go on to learn about another.
|
||||
|
||||
Read the INSTALL file in the source directory for instructions if you wish to
|
||||
enable readarray support. readarray speeds up initial loading of large scripts.
|
||||
|
||||
|
|
|
@ -8,16 +8,17 @@
|
|||
# readarray speeds up initial loading of large scripts.
|
||||
|
||||
PRGNAM=bashdb
|
||||
VERSION=3.1-0.08
|
||||
PKGVER=3.1_0.08
|
||||
VERSION=3.1-0.09
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
PKG_VER=$(echo $VERSION | tr '-' '_')
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
|
@ -33,6 +34,7 @@ CFLAGS="$SLKCFLAGS" \
|
|||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--infodir=/usr/info \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
|
@ -42,11 +44,13 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|||
gzip -9 $PKG/usr/info/*.info
|
||||
rm -rf $PKG/usr/info/dir
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog ChangeLog.0 INSTALL NEWS README THANKS TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$PKG_VER
|
||||
cp -a AUTHORS COPYING ChangeLog ChangeLog.0 INSTALL NEWS README THANKS TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$PKG_VER
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$PKG_VER/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKGVER-$ARCH-$BUILD$TAG.tgz
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKG_VER-$ARCH-$BUILD$TAG.tgz
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="bashdb"
|
||||
VERSION="3.1-0.08"
|
||||
VERSION="3.1_0.09"
|
||||
HOMEPAGE="http://bashdb.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/bashdb/bashdb-3.1-0.08.tar.gz"
|
||||
MD5SUM="6273905fd0ad089e6c8dbbae75677ed1"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/bashdb/bashdb-3.1-0.09.tar.gz"
|
||||
MD5SUM="b6606a99d3d0a733b5b214ee1ecb168f"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="elohim,BP{k},robw810"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
bashdb: bashdb - The BASH Debugger Project
|
||||
# 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------------------------------------------------------|
|
||||
bashdb: bashdb (The BASH Debugger Project)
|
||||
bashdb:
|
||||
bashdb: The BASH Debugger Project contains the most comprehensive source-code
|
||||
bashdb: debugger for bash that has been written. It has a similar command
|
||||
|
@ -8,3 +16,4 @@ bashdb: http://bashdb.sourceforge.net/
|
|||
bashdb:
|
||||
bashdb:
|
||||
bashdb:
|
||||
bashdb:
|
||||
|
|
Loading…
Reference in New Issue