development/bas55: Updated for version 1.13.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
c4fb181fff
commit
9e838d652c
|
@ -1,4 +1,7 @@
|
||||||
bas55 (ECMA-55 Minimal BASIC Interpreter)
|
bas55 (ECMA-55 Minimal BASIC System)
|
||||||
|
|
||||||
bas55 is an interpreter for the Minimal BASIC programming language as
|
bas55 is an implementation of the the Minimal BASIC programming language as
|
||||||
defined by the ECMA 55 standard.
|
defined by the ECMA 55 standard. It provides an interpreter and an editor
|
||||||
|
with line renumbering capabilities.
|
||||||
|
|
||||||
|
For enhanced editing support, pass LIBEDIT=yes to the SlackBuild. This requires "libedit".
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for bas55
|
# Slackware build script for bas55
|
||||||
|
|
||||||
# Copyright 2015-2017 Jorge Giner Cordero
|
# Copyright 2018 Jorge Giner Cordero
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=bas55
|
PRGNAM=bas55
|
||||||
VERSION=${VERSION:-1.11}
|
VERSION=${VERSION:-1.13}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -54,6 +54,12 @@ else
|
||||||
LIBDIRSUFFIX=""
|
LIBDIRSUFFIX=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$LIBEDIT" = yes ]; then
|
||||||
|
LIBEDITOPTION="--with-libedit"
|
||||||
|
else
|
||||||
|
LIBEDITOPTION=""
|
||||||
|
fi
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
|
@ -79,7 +85,8 @@ CXXFLAGS="$SLKCFLAGS" \
|
||||||
--mandir=/usr/man \
|
--mandir=/usr/man \
|
||||||
--infodir=/usr/info \
|
--infodir=/usr/info \
|
||||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
--build=$ARCH-slackware-linux
|
--build=$ARCH-slackware-linux \
|
||||||
|
${LIBEDITOPTION}
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$PKG
|
make install DESTDIR=$PKG
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="bas55"
|
PRGNAM="bas55"
|
||||||
VERSION="1.11"
|
VERSION="1.13"
|
||||||
HOMEPAGE="http://jorgicor.sdfeu.org/bas55"
|
HOMEPAGE="http://jorgicor.sdfeu.org/bas55"
|
||||||
DOWNLOAD="http://jorgicor.sdfeu.org/bas55/bas55-1.11.tar.gz"
|
DOWNLOAD="http://jorgicor.sdfeu.org/bas55/bas55-1.13.tar.gz"
|
||||||
MD5SUM="dc22f8ea486b65aa9717c3386b99cdfd"
|
MD5SUM="5d85bfb90459428e3399118a8e840997"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
|
|
|
@ -6,14 +6,14 @@
|
||||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
bas55: bas55 (ECMA-55 Minimal BASIC Interpreter)
|
bas55: bas55 (ECMA-55 Minimal BASIC System)
|
||||||
bas55:
|
bas55:
|
||||||
bas55: bas55 is an interpreter for the Minimal BASIC programming language as
|
bas55: bas55 is an implementation of the Minimal BASIC programming language
|
||||||
bas55: defined by the ECMA 55 standard.
|
bas55: as defined by the ECMA 55 standard. It provides an interpreter and
|
||||||
|
bas55: an editor with line renumbering capabilities.
|
||||||
bas55:
|
bas55:
|
||||||
bas55: http://jorgicor.sdfeu.org/bas55
|
bas55: http://jorgicor.sdfeu.org/bas55
|
||||||
bas55:
|
bas55:
|
||||||
bas55:
|
bas55:
|
||||||
bas55:
|
bas55:
|
||||||
bas55:
|
bas55:
|
||||||
bas55:
|
|
||||||
|
|
Loading…
Reference in New Issue