diff options
Diffstat (limited to 'perl/perl-Math-Int128/perl-Math-Int128.SlackBuild')
-rw-r--r-- | perl/perl-Math-Int128/perl-Math-Int128.SlackBuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/perl/perl-Math-Int128/perl-Math-Int128.SlackBuild b/perl/perl-Math-Int128/perl-Math-Int128.SlackBuild index 3767f49ad4..97b6e428d8 100644 --- a/perl/perl-Math-Int128/perl-Math-Int128.SlackBuild +++ b/perl/perl-Math-Int128/perl-Math-Int128.SlackBuild @@ -22,6 +22,12 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220319 bkw: Modified by SlackBuilds.org: +# - mark as 64-bit only in .info file, since it'll never build on 32-bit. +# References: +# https://stackoverflow.com/questions/34532528/undefined-reference-to-divdi3 +# https://stackoverflow.com/questions/16088282/is-there-a-128-bit-integer-in-gcc + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=perl-Math-Int128 @@ -40,9 +46,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -77,9 +80,9 @@ cd $SRCNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ perl Makefile.PL \ PREFIX=/usr \ |