system/asbt: Updated for version 0.8.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
77123788f2
commit
766d6be850
|
@ -1,8 +1,8 @@
|
|||
asbt acts like a package manager for your local copy of slackbuilds.
|
||||
(usually obtained from slackbuilds.org)
|
||||
asbt is a tool for managing packages in your local copy of slackbuilds,
|
||||
usually obtained from http://slackbuilds.org/ (SBo).
|
||||
|
||||
It supports searching (-s), viewing information (-i,-r,-d,-v) ,
|
||||
downloading (-g), building (-B), and installing/removing/upgrading packages.
|
||||
It supports searching (-s), viewing information (-i,-r,-d,-v) , downloading (-g),
|
||||
building (-B), and installing/removing/upgrading packages.
|
||||
|
||||
The list of available options is present in the readme and the man page.
|
||||
|
||||
|
@ -23,7 +23,4 @@ adjust according to your wish, are:
|
|||
4) gitdir="/home/$USER/git/slackbuilds/.git"
|
||||
# Directory where the slackbuilds git repository is present.
|
||||
|
||||
5) editor="/usr/bin/vim"
|
||||
# Editor for viewing/editing slackbuilds.
|
||||
|
||||
These variables can also be configured via editing /etc/asbt/asbt.conf
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=asbt
|
||||
VERSION=${VERSION:-0.8.0}
|
||||
VERSION=${VERSION:-0.8.2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
ARCH=noarch
|
||||
|
@ -65,6 +65,9 @@ make install DESTDIR=$PKG
|
|||
# Preserve config file
|
||||
mv $PKG/etc/asbt/asbt.conf $PKG/etc/asbt/asbt.conf.new
|
||||
|
||||
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
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="asbt"
|
||||
VERSION="0.8.0"
|
||||
VERSION="0.8.2"
|
||||
HOMEPAGE="http://github.com/aadityabagga/asbt"
|
||||
DOWNLOAD="http://github.com/aadityabagga/asbt/archive/0.8.0.tar.gz"
|
||||
MD5SUM="608d95c1c900b94c02dde267ebbf7a7e"
|
||||
DOWNLOAD="http://github.com/aadityabagga/asbt/archive/0.8.2.tar.gz"
|
||||
MD5SUM="542295c1e69ea44232b0418fa7951c4d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
asbt: asbt (a tool for managing packages in slackbuilds local repository)
|
||||
asbt:
|
||||
asbt: asbt acts like a package manager for your local copy of slackbuilds.
|
||||
asbt: asbt (tool for managing packages in slackbuilds local repository)
|
||||
asbt:
|
||||
asbt: asbt acts like a package manager for your local copy of slackbuilds,
|
||||
asbt: usually obtained from slackbuilds.org (SBo).
|
||||
asbt:
|
||||
asbt: It supports searching, displaying info, getting, building,
|
||||
asbt: and installing/removing/upgrading packages.
|
||||
|
|
Loading…
Reference in New Issue