blob: 0ff7b9f74c6a5831fdc1a20cb1f70900a9d62b02 (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
# Maintainer: Joshua Ellis <josh@jpellis.me>
# Contributor: Anish Tondwalkar <anish@tjhsst.edu>
# Contributor: Ghost91 <m_graeb11@cs.uni-kl.de>
# Contributor: Michael Pusterhofer <pusterhofer at student dot tugraz dot at>
# Contributor: Raphael Scholer <rscholer@gmx.de>
# Contributor: kjslag <kjslag at gmail dot com>
# Contributor: teratomata <teratomat@gmail.com>
# Contributor: Maxim Mikityanskiy <maxtram95@gmail.com>
pkgname=mathematica
pkgver=13.2.1
pkgrel=1
pkgdesc="A computational software program used in scientific, engineering, and mathematical fields and other areas of technical computing with offline documentation."
arch=('x86_64')
url="http://www.wolfram.com/mathematica/"
license=('proprietary')
depends=(
'openmp'
)
optdepends=(
## The following list of dependencies was inferred from namcap's output. If
## you believe there is an error, please let me know. Also feel free to
## contribute description to dependencies if you know what they do.
'alsa-lib'
'atk'
'cairo'
'ffmpeg'
'fontconfig'
'gdk-pixbuf2'
'glib2'
'glu'
'gmime'
'gmp'
'gtk2'
'harfbuzz'
'intel-tbb'
'java-environment'
'java-runtime'
'leptonica'
'libbson'
'libffi'
'libmongoc'
'libogg'
'libpng12'
'libselinux'
'libsm'
'libssh2'
'libutil-linux'
'libx11'
'libxcomposite'
'libxml2'
'libxrandr'
'libxslt'
'libxss'
'libxtst'
'libxxf86vm'
'mesa-demos: for improved graphics output'
'ncurses'
'nvidia-utils'
'openssl-1.0'
'pango'
'pixman'
'portaudio'
'postgresql-libs'
'python'
'qt5-declarative'
'qt5-multimedia'
'qt5-webengine'
'qt5-xmlpatterns'
'r'
'tesseract'
'zlib'
)
source=(
"local://Mathematica_${pkgver}_BNDL_LINUX.sh"
"remove-xdg-scripts.patch"
)
md5sums=(
'f796e96f6faeb441a8b24fb180d44e47'
'14df424ec93fad057604378c2b5c24c2'
)
options=("!strip")
## To build this package you need to place the mathematica-installer into your
## startdir If you don't own the installer you can download a trial version at
## http://www.wolfram.com/mathematica/trial
## The documentation takes up the majority of the disk space. If you do not wish
## to keep it, uncomment the relevant lines at the bottom of this PKGBUILD.
## The final package can be very large (especially if documentation is kept) and
## compression can be quite slow. In most cases, the package is installed
## straight away and the package need not be kept, so compression is disabled.
# PKGEXT='.pkg.tar'
prepare() {
warning "Building Mathematica takes more than 24GiB of space for 'makepkg'."
warning "Building in a tmpfs (e.g. /tmp when mounted into RAM) may not work."
if [ $(echo "${srcdir}" | wc -w) -ne 1 ]; then
msg2 "ERROR: The Mathematica installer doesn't support directory names with spaces."
msg2 "Current build directory: ${srcdir}"
exit 1
fi
msg2 "Extracting Mathematica installer..."
sh "${srcdir}/Mathematica_${pkgver}_BNDL_LINUX.sh" \
--keep \
--target "${srcdir}/bundle" \
-- \
-help >/dev/null
patch -p1 -d "${srcdir}/bundle" < "${srcdir}/remove-xdg-scripts.patch"
}
package() {
msg2 "Running Mathematica installer"
# https://reference.wolfram.com/language/tutorial/InstallingMathematica.html#650929293
sh "${srcdir}/bundle/Unix/Installer/MathInstaller" \
-execdir="${pkgdir}/usr/bin" \
-targetdir="${pkgdir}/opt/Mathematica" \
-auto
if [ -s "${pkgdir}/opt/Mathematica/InstallErrors" ]; then
msg2 "Review installation errors:"
cat "${pkgdir}/opt/Mathematica/InstallErrors"
fi
rm -f "${pkgdir}/opt/Mathematica/InstallErrors"
msg2 "Fixing symbolic links"
cd ${pkgdir}/opt/Mathematica/Executables
rm wolframscript
ln -s /opt/Mathematica/SystemFiles/Kernel/Binaries/Linux-x86-64/wolframscript
cd ${pkgdir}/usr/bin
rm *
ln -s /opt/Mathematica/Executables/math
ln -s /opt/Mathematica/Executables/mathematica
ln -s /opt/Mathematica/Executables/Mathematica
ln -s /opt/Mathematica/Executables/MathKernel
ln -s /opt/Mathematica/Executables/mcc
ln -s /opt/Mathematica/Executables/wolfram
ln -s /opt/Mathematica/Executables/WolframKernel
ln -s /opt/Mathematica/SystemFiles/Kernel/Binaries/Linux-x86-64/ELProver
ln -s /opt/Mathematica/SystemFiles/Kernel/Binaries/Linux-x86-64/wolframscript
msg2 "Setting up WolframScript"
mkdir -p ${srcdir}/WolframScript
mkdir -p ${pkgdir}/usr/share/
cd ${srcdir}/WolframScript
bsdtar -xf ${pkgdir}/opt/Mathematica/SystemFiles/Installation/wolframscript_*_amd64.deb data.tar.xz
tar -xf data.tar.xz -C ${pkgdir}/usr/share/ --strip=3 ./usr/share/
msg2 "Copying menu and mimetype information"
mkdir -p \
${pkgdir}/usr/share/applications \
${pkgdir}/usr/share/desktop-directories \
${pkgdir}/usr/share/mime/packages
cd ${pkgdir}/opt/Mathematica/SystemFiles/Installation
desktopFile='wolfram-mathematica13.desktop'
sed -Ei 's|^(\s*TryExec=).*|\1/usr/bin/Mathematica|g' $desktopFile
sed -Ei 's|^(\s*Exec=).*|\1/usr/bin/Mathematica %F|g' $desktopFile
printf 'Categories=Science;Education;Languages;ArtificialIntelligence;Astronomy;Biology;Chemistry;ComputerScience;DataVisualization;Geography;ImageProcessing;Math;NumericalAnalysis;MedicalSoftware;Physics;ParallelComputer;\n' >> $desktopFile
printf 'StartupWMClass=Mathematica;\n' >> $desktopFile
cp $desktopFile ${pkgdir}/usr/share/applications/
cp wolfram-all.directory ${pkgdir}/usr/share/desktop-directories/
cp *.xml ${pkgdir}/usr/share/mime/packages/
msg2 "Copying icons"
mkdir -p ${pkgdir}/usr/share/icons/hicolor/{32x32,64x64,128x128}/{apps,mimetypes}
cd ${pkgdir}/opt/Mathematica/SystemFiles/FrontEnd/SystemResources/X
for i in 32 64 128; do
cp App-${i}.png ${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/wolfram-mathematica.png
for mimetype in $(ls vnd.* | cut -d '-' -f1 | uniq); do
cp ${mimetype}-${i}.png ${pkgdir}/usr/share/icons/hicolor/${i}x${i}/mimetypes/application-${mimetype}.png
done
done
msg2 "Copying man pages"
mkdir -p ${pkgdir}/usr/share/man/man1
cd ${pkgdir}/opt/Mathematica/SystemFiles/SystemDocumentation/Unix
cp *.1 ${pkgdir}/usr/share/man/man1
msg2 "Copying license"
mkdir -p ${pkgdir}/usr/share/licenses/Mathematica/
cp ${pkgdir}/opt/Mathematica/LICENSE.txt ${pkgdir}/usr/share/licenses/Mathematica/license.txt
msg2 "Fixing file permissions"
chmod go-w -R ${pkgdir}/*
}
|