diff options
author | Judah Milgram <milgram / cgpp / com> | 2023-07-10 07:52:01 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-07-10 07:52:01 +0700 |
commit | 3c0d34bfe50b1f29cfe76d987e2b80c9adb3aab5 (patch) | |
tree | 1223d3546428529fa422110995ed2c8fc8388d24 /development | |
parent | c3a14a080522d599f9c1c828c7fc78b1c9c6066c (diff) |
development/f2c: Updated for version 20230428.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development')
-rw-r--r-- | development/f2c/f2c.SlackBuild | 14 | ||||
-rw-r--r-- | development/f2c/f2c.info | 16 |
2 files changed, 15 insertions, 15 deletions
diff --git a/development/f2c/f2c.SlackBuild b/development/f2c/f2c.SlackBuild index 248d39ed13f9a..c2c8eb5dc342d 100644 --- a/development/f2c/f2c.SlackBuild +++ b/development/f2c/f2c.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for f2c -# Copyright 2017, Judah Milgram, Washington DC +# Copyright 2017-2023, Judah Milgram, Washington DC # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=f2c -VERSION=${VERSION:-20160102} # This is the f2c version, not libf2c. +VERSION=${VERSION:-20230428} # f2c version, not libf2c. BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -87,8 +87,8 @@ cd $TMP/$PRGNAM-$VERSION/libf2c make CFLAGS="${SLKCFLAGS}" -f makefile.u # install libf2c: -mkdir -p $PKG/usr/lib -make -f makefile.u LIBDIR=$PKG/usr/lib install +mkdir -p $PKG/usr/lib${LIBDIRSUFFIX} +make -f makefile.u LIBDIR=$PKG/usr/lib${LIBDIRSUFFIX} install # make f2c: cd $TMP/$PRGNAM-$VERSION/src @@ -98,16 +98,16 @@ make CFLAGS="${SLKCFLAGS}" -f makefile.u mkdir -p $PKG/usr/bin mkdir -p $PKG/usr/include install -s f2c $PKG/usr/bin -install f2c.h $PKG/usr/include +install -m 644 f2c.h $PKG/usr/include # strip binaries: -strip --strip-unneeded $PKG/usr/lib/libf2c.a +strip --strip-unneeded $PKG/usr/lib${LIBDIRSUFFIX}/libf2c.a strip --strip-unneeded $PKG/usr/bin/f2c # install f2c man page: cd $TMP mkdir -p $PKG/usr/man/man1 -install $PRGNAM-$VERSION/src/f2c.1 $PKG/usr/man/man1/f2c.1 +install -m 644 $PRGNAM-$VERSION/src/f2c.1t $PKG/usr/man/man1/f2c.1 gzip -9 $PKG/usr/man/man1/f2c.1 # install docs: diff --git a/development/f2c/f2c.info b/development/f2c/f2c.info index 4b157b737c3f9..0694e5b008078 100644 --- a/development/f2c/f2c.info +++ b/development/f2c/f2c.info @@ -1,16 +1,16 @@ PRGNAM="f2c" -VERSION="20160102" -HOMEPAGE="http://www.netlib.org/f2c/" -DOWNLOAD="http://www.netlib.org/f2c/libf2c.zip \ - http://www.netlib.org/f2c/src.tgz \ - http://www.netlib.org/f2c/fc \ - http://www.netlib.org/f2c/f2c.pdf" +VERSION="20230428" +HOMEPAGE="https://www.netlib.org/f2c/" +DOWNLOAD="https://www.netlib.org/f2c/libf2c.zip \ + https://portal.ampl.com/~dmg/netlib/f2c/src.tgz \ + https://www.netlib.org/f2c/fc \ + https://www.netlib.org/f2c/f2c.pdf" MD5SUM="e80fb30fa3717660db71b1bed65b88b7 \ - 28758bfd41de18b0d1fcf716eea05032 \ + 32df3bce5afd7bc1610c02a4e698b9a8 \ dcdf6afbd96204662bf10594b744cb44 \ 2a84d6d2f74412d7a288e721070d62b8" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" MAINTAINER="Judah Milgram" -EMAIL="milgram@cgpp.com" +EMAIL="milgram / cgpp / com" |