system/asbt: Updated for version 1.7.
This commit is contained in:
parent
e76e0021ba
commit
f432f2ffc0
|
@ -1,30 +1,30 @@
|
|||
The variables used in the script, which you would probably
|
||||
adjust according to your wish, are:
|
||||
|
||||
1) repodir="$HOME/slackbuilds"
|
||||
1) REPODIR="$HOME/slackbuilds"
|
||||
# Repository for slackbuilds.
|
||||
|
||||
2) srcdir="$HOME/src"
|
||||
2) SRCDIR="$HOME/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/pkg"
|
||||
3) PKGDIR="$HOME/pkg"
|
||||
# Where the build package will be placed.
|
||||
# Leave it blank for putting it in /tmp.
|
||||
|
||||
4) gitdir="$HOME/slackbuilds/.git"
|
||||
4) GITDIR="$HOME/slackbuilds/.git"
|
||||
# Directory where the slackbuilds git repository is present.
|
||||
|
||||
5) editor="/usr/bin/vim"
|
||||
5) EDITOR="/usr/bin/vim"
|
||||
# Editor for viewing/editing slackbuilds.
|
||||
|
||||
6) buildflags="MAKEFLAGS=-j2"
|
||||
6) BUILDFLAGS="MAKEFLAGS=-j2"
|
||||
# Common build flags specified while building packages.
|
||||
|
||||
7) ignore=""
|
||||
7) IGNORE=""
|
||||
# Packages to ignore when checking for updates.
|
||||
|
||||
8) pause="yes"
|
||||
8) PAUSE="yes"
|
||||
# Pause for input when using superuser priviliges.
|
||||
|
||||
These variables can be configured via editing /etc/asbt/asbt.conf
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=asbt
|
||||
VERSION=${VERSION:-1.6.2}
|
||||
VERSION=${VERSION:-1.7}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="asbt"
|
||||
VERSION="1.6.2"
|
||||
VERSION="1.7"
|
||||
HOMEPAGE="http://github.com/aadityabagga/asbt"
|
||||
DOWNLOAD="http://github.com/aadityabagga/asbt/archive/1.6.2.tar.gz"
|
||||
MD5SUM="17d0e6749ac7e028b2ea4102ffa6f5b2"
|
||||
DOWNLOAD="http://github.com/aadityabagga/asbt/archive/1.7.tar.gz"
|
||||
MD5SUM="b40fb732a33fa2b278ab43303508cc6c"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue