blob: 823ca65d83cd04ea3b7451f360972261ef8f171c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#!/bin/sh
# Slackware build script for MLton
# Slackware build script for mlton
# Originally by Jockey S. Kyd (jockey dot kyd at gmail dot com)
# Modified by Ryan P.C. McQuen, WA, ryanpcmcquen@member.fsf.org
# Copyright 2018, Scot Doyle
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version, with the following exception:
# the text of the GPL license may be omitted..
# This program is distributed in the hope that it will be useful, but
# without any warranty; without even the implied warranty of
# merchantability or fitness for a particular purpose. Compiling,
# interpreting, executing or merely reading the text of the program
# may result in lapses of consciousness and/or very being, up to and
# including the end of all existence and the Universe as we know it.
# See the GNU General Public License for more details.
# You may have received a copy of the GNU General Public License
# along with this program (most likely, a file named COPYING). If
# not, see <http://www.gnu.org/licenses/>.
PRGNAM=mlton
VERSION=${VERSION:-20180207}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PREBUILT=${PREBUILT:-$PRGNAM-$VERSION-1.amd64-linux}
ARCH=${ARCH:-$(uname -m)}
case "$ARCH" in
x86_64) : ;;
*) printf "This script only supports x86_64.\n" 1>&2; exit 1 ;;
esac
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PREBUILT $PRGNAM-$VERSION
tar xvf $CWD/$PREBUILT.tgz
tar xvf $CWD/$PRGNAM-$VERSION.src.tgz
# Permissions are already set
chown -R root:root $PREBUILT $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
# Prefer the pre-built compiler
PATH=$TMP/$PREBUILT/bin:$PATH
# Without any ulimit, "amd64 code gen" uses all available memory.
ulimit -v 4000000
make -j1 all
make PREFIX="$PKG" install
# Fix ownership of stuff from 'make install'
chown -R root:root $PKG
# Binaries are already stripped
cd $PKG
mkdir -p usr
mv share/man usr
if [ "$1" = "-docs" ]; then
mkdir -p usr/share/doc
mv share/doc/$PRGNAM usr/share/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > usr/share/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
fi
rm -rf share
mv lib usr/lib64
mv bin usr
sed -i "s:^lib=.*:lib=/usr/lib64/mlton:" usr/bin/mlton
mkdir install
cat $CWD/slack-desc > install/slack-desc
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|