2014-02-16 02:54:16 +01:00
|
|
|
asbt is a tool for managing packages in your local copy of slackbuilds,
|
|
|
|
usually obtained from http://slackbuilds.org/ (SBo).
|
2014-02-10 01:25:15 +01:00
|
|
|
|
2014-02-18 17:23:41 +01:00
|
|
|
It supports searching (-s), viewing information (-i,-r,-d,-v) ,
|
|
|
|
downloading (-g), building (-B), and installing/removing/upgrading packages.
|
2014-02-10 01:25:15 +01:00
|
|
|
|
|
|
|
The list of available options is present in the readme and the man page.
|
|
|
|
|
|
|
|
The variables used in the script, which you would probably
|
|
|
|
adjust according to your wish, are:
|
|
|
|
|
|
|
|
1) repodir="/home/$USER/slackbuilds"
|
|
|
|
# Repository for slackbuilds.
|
|
|
|
|
|
|
|
2) srcdir="/home/$USER/src"
|
|
|
|
# Where the downloaded source packages are to be placed.
|
|
|
|
# Leave it blank for saving it in the same directory as the slackbuild.
|
|
|
|
|
|
|
|
3) outdir="/home/$USER/src"
|
|
|
|
# Where the build package will be placed.
|
|
|
|
# Leave it blank for putting it in /tmp.
|
|
|
|
|
|
|
|
4) gitdir="/home/$USER/git/slackbuilds/.git"
|
|
|
|
# Directory where the slackbuilds git repository is present.
|
|
|
|
|
2014-02-18 17:23:41 +01:00
|
|
|
5) editor="/usr/bin/vim"
|
|
|
|
# Editor for viewing/editing slackbuilds.
|
|
|
|
|
2014-03-08 18:21:46 +01:00
|
|
|
These variables can be configured via editing /etc/asbt/asbt.conf
|