development/regina-rexx: Updated for version 3.9.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
a37dc426d4
commit
412fdf501e
|
@ -8,18 +8,13 @@ inexperienced programmers yet powerful enough for experienced users.
|
|||
It is also a language ideally suited as a macro language for other
|
||||
applications.
|
||||
|
||||
To create the normal dynamic version just do this:
|
||||
sh regina-rexx.SlackBuild
|
||||
To create the normal dynamic library version just do this:
|
||||
|
||||
bash regina-rexx.SlackBuild
|
||||
|
||||
Or to create a static version of the rexx binary executable do this:
|
||||
|
||||
1) The Slackware 14.2 ncurses package is built without static libs.
|
||||
This prevents the static build of regina-rexx from loading properly.
|
||||
In this case:
|
||||
a) Modify the ncurses.SlackBuild and change the "--without-normal"
|
||||
option to "--with-normal"
|
||||
b) Rebuild and reinstall the ncurses package.
|
||||
2) FLAVOR=static sh regina-rexx.SlackBuild
|
||||
FLAVOR=static bash regina-rexx.SlackBuild
|
||||
|
||||
After installation of the package, a startup script for the rxstack is
|
||||
created: /etc/rc.d/rc.rxstack
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=regina-rexx
|
||||
VERSION=${VERSION:-3.9.3}
|
||||
VERSION=${VERSION:-3.9.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -62,6 +62,7 @@ find -L . \
|
|||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
if [ "$FLAVOR" = "static" ]; then
|
||||
SLKCFLAGS="$SLKCFLAGS -static"
|
||||
mv -f configure configure.orig
|
||||
sed -e 's/STATIC_LDFLAGS=""/STATIC_LDFLAGS="-static"/' <configure.orig >configure
|
||||
chmod 744 configure
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="regina-rexx"
|
||||
VERSION="3.9.3"
|
||||
VERSION="3.9.4"
|
||||
HOMEPAGE="http://regina-rexx.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/regina-rexx/regina-rexx-3.9.3.tar.gz"
|
||||
MD5SUM="9631f4a8859fb44f7e76f80682e76494"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/regina-rexx/regina-rexx-3.9.4.tar.gz"
|
||||
MD5SUM="3c9495df40def4e9402800de506a9773"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue