-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
211 lines (193 loc) · 8.07 KB
/
PKGBUILD
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# Maintainer: Grey Christoforo <first name at last name dot net>
# Contributor: Jingbei Li <i@jingbei.li>
## This PKGBUILD creates an Arch Linux package for the proprietary MATLAB application. A license from The MathWorks is needed in order to both build the package and to run MATLAB once the package is installed. In order to build the package the user must supply a plain text file installation key and the software. For network installations, in addition to the file installation key, a license file needs to be used for the installation. The tar archive file can be generated from an ISO downloaded from The MathWorks, generated from the official DVD, or created by using the interactive installer to download the toolboxes (installation can be made to a temporary directory and canceled once the toolboxes are downloaded). The contents of the tar archive must include: ./archives/ ./bin/ ./etc/ ./help/ ./java/ /sys ./activate.ini ./install ./installer_input.txt
## The default installation behavior is to install all licensed products whether or not they are available in the tar file. To install only a subset of licensed products either provide a $_products array or set $_partialinstall and remove unwanted entries from the provided $_products array. To perform a network install set $_networkinstall.
pkgbase='matlab'
pkgname=('matlab' 'matlab-licenses')
pkgver=9.4.0.813654
pkgrel=1
pkgdesc='A high-level language for numerical computation and visualization'
arch=('x86_64')
url='http://www.mathworks.com'
license=(custom)
makedepends=('gendesk')
depends=('gconf'
'glu'
'gstreamer0.10-base'
'gtk2'
'libunwind'
'libxp'
'libxpm'
'libxss'
'libxtst'
'ncurses5-compat-libs'
'nss'
'gcc6'
'portaudio'
'python2'
'qt5-svg'
'qt5-webkit'
'qt5-websockets'
'qt5-x11extras'
'xerces-c')
source=("file://matlab.tar"
"file://matlab.fik")
md5sums=('SKIP'
'SKIP')
PKGEXT='.pkg.tar'
#_networkinstall=true
## For network installations, apparently, a license file needs to be used for the installation.
if [ ! -z ${_networkinstall+isSet} ]; then
source+=("file://license.dat")
md5sums+=('SKIP')
fi
prepare() {
msg2 'Creating desktop file'
gendesk -f -n --pkgname "${pkgname}" --pkgdesc "${pkgdesc}" --categories "Development;Education;Science;Mathematics;IDE" > /dev/null
sed -i "/^Exec=/ s,$, -desktop," "${srcdir}/${pkgname}.desktop"
msg2 'Extracting file installation key'
_fik=$(grep -o [0-9-]* ${pkgname}.fik)
msg2 'Modifying the installer settings'
sed -i "s,^# destinationFolder=,destinationFolder=${pkgdir}/opt/tmw/${pkgname}/," "${srcdir}/installer_input.txt"
sed -i "s,^# agreeToLicense=,agreeToLicense=yes," "${srcdir}/installer_input.txt"
sed -i "s,^# mode=,mode=silent," "${srcdir}/installer_input.txt"
sed -i "s,^# fileInstallationKey=,fileInstallationKey=${_fik}," "${srcdir}/installer_input.txt"
if [ ! -z ${_networkinstall+isSet} ]; then
sed -i "s,^# licensePath=,licensePath=${srcdir}/license.dat," "${srcdir}/installer_input.txt"
fi
if [ ! -z ${_products+isSet} ]; then
msg2 'Building a package with a subset of the licensed products.'
for _product in "${_products[@]}"; do
sed -i "/^#product.${_product}$/ s/^#//" "${srcdir}/installer_input.txt"
done
fi
}
package_matlab() {
msg2 'Starting MATLAB installer'
"${srcdir}/install" -t -inputFile "${srcdir}/installer_input.txt" -mode silent
msg2 'Installing license'
install -D -m644 "${pkgdir}/opt/tmw/${pkgname}/license_agreement.txt" "${pkgdir}/usr/share/licenses/tmw/${pkgname}/LICENSE"
msg2 'Creating links for license'
rm -rf "${srcdir}/licenses"
mv "${pkgdir}/opt/tmw/${pkgname}/licenses" "${srcdir}/licenses"
ln -s "/etc/tmw/${pkgname}/licenses/" "${pkgdir}/opt/tmw/${pkgname}/licenses"
msg2 'Creating links for executables'
install -d -m755 "${pkgdir}/usr/bin/"
for _executable in deploytool matlab mbuild mcc; do
ln -s "/opt/tmw/${pkgname}/bin/${_executable}" "${pkgdir}/usr/bin/${_executable}"
done
ln -s "/opt/tmw/${pkgname}/bin/mex" "${pkgdir}/usr/bin/mex-$pkgbase"
msg2 'Installing desktop files'
install -D -m644 "${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
install -D -m644 "${pkgdir}/opt/tmw/${pkgname}/help/matlab/matlab_env/matlab_desktop_icon.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
msg2 'Configuring mex options'
sed -i "s#CC='gcc'#CC='gcc-6'#g" "${pkgdir}/opt/tmw/${pkgname}/bin/mexopts.sh"
sed -i "s#CXX='g++'#CXX='g++-6'#g" "${pkgdir}/opt/tmw/${pkgname}/bin/mexopts.sh"
sed -i "s#FC='gfortran'#FC='gfortran-6'#g" "${pkgdir}/opt/tmw/${pkgname}/bin/mexopts.sh"
## See $MATLABROOT/sys/os/glnxa64/README.libstdc++
msg2 'Removing unused library files'
rm ${pkgdir}/opt/tmw/${pkgname}/sys/os/glnxa64/{libstdc++.so.6.0.22,libstdc++.so.6,libgcc_s.so.1,libgfortran.so.3.0.0,libgfortran.so.3,libquadmath.so.0.0.0,libquadmath.so.0}
# make sure MATLAB can find libgfortran.so.3
sed -i 's,LD_LIBRARY_PATH="`eval echo $LD_LIBRARY_PATH`",LD_LIBRARY_PATH="`eval echo $LD_LIBRARY_PATH`:/usr/lib/gcc/x86_64-pc-linux-gnu/'$(pacman -Q gcc6 | awk '{print $2}' | cut -d- -f1)'",g' "${pkgdir}/opt/tmw/matlab/bin/matlab"
}
package_matlab-licenses() {
mkdir -p "${pkgdir}/etc/tmw/${pkgbase}"
mv "${srcdir}/licenses" "${pkgdir}/etc/tmw/${pkgbase}/licenses"
}
if [ ! -z ${_partialinstall+isSet} ] && [ -z ${_products+isSet} ]; then
_products=(
"Aerospace_Blockset"
"Aerospace_Toolbox"
"Antenna_Toolbox"
"Audio_System_Toolbox"
"Automated_Driving_System_Toolbox"
"Bioinformatics_Toolbox"
"Communications_System_Toolbox"
"Computer_Vision_System_Toolbox"
"Control_System_Toolbox"
"Curve_Fitting_Toolbox"
"DO_Qualification_Kit"
"DSP_System_Toolbox"
"Data_Acquisition_Toolbox"
"Database_Toolbox"
"Datafeed_Toolbox"
"Econometrics_Toolbox"
"Embedded_Coder"
"Filter_Design_HDL_Coder"
"Financial_Instruments_Toolbox"
"Financial_Toolbox"
"Fixed_Point_Designer"
"Fuzzy_Logic_Toolbox"
"GPU_Coder"
"Global_Optimization_Toolbox"
"HDL_Coder"
"HDL_Verifier"
"IEC_Certification_Kit"
"Image_Acquisition_Toolbox"
"Image_Processing_Toolbox"
"Instrument_Control_Toolbox"
"LTE_HDL_Toolbox"
"LTE_System_Toolbox"
"MATLAB"
"MATLAB_Coder"
"MATLAB_Compiler"
"MATLAB_Compiler_SDK"
"MATLAB_Distributed_Computing_Server"
"MATLAB_Production_Server"
"MATLAB_Report_Generator"
"Mapping_Toolbox"
"Model_Predictive_Control_Toolbox"
"Model_Based_Calibration_Toolbox"
"Neural_Network_Toolbox"
"OPC_Toolbox"
"Optimization_Toolbox"
"Parallel_Computing_Toolbox"
"Partial_Differential_Equation_Toolbox"
"Phased_Array_System_Toolbox"
"Polyspace_Bug_Finder"
"Polyspace_Code_Prover"
"Powertrain_Blockset"
"Predictive_Maintenance_Toolbox"
"RF_Blockset"
"RF_Toolbox"
"Risk_Management_Toolbox"
"Robotics_System_Toolbox"
"Robust_Control_Toolbox"
"Signal_Processing_Toolbox"
"SimBiology"
"SimEvents"
"Simscape"
"Simscape_Driveline"
"Simscape_Electronics"
"Simscape_Fluids"
"Simscape_Multibody"
"Simscape_Power_Systems"
"Simulink"
"Simulink_3D_Animation"
"Simulink_Check"
"Simulink_Code_Inspector"
"Simulink_Coder"
"Simulink_Control_Design"
"Simulink_Coverage"
"Simulink_Design_Optimization"
"Simulink_Design_Verifier"
"Simulink_Desktop_Real_Time"
"Simulink_PLC_Coder"
"Simulink_Real_Time"
"Simulink_Report_Generator"
"Simulink_Requirements"
"Simulink_Test"
"Spreadsheet_Link"
"Stateflow"
"Statistics_and_Machine_Learning_Toolbox"
"Symbolic_Math_Toolbox"
"System_Identification_Toolbox"
"Text_Analytics_Toolbox"
"Trading_Toolbox"
"Vehicle_Dynamics_Blockset"
"Vehicle_Network_Toolbox"
"Vision_HDL_Toolbox"
"WLAN_System_Toolbox"
"Wavelet_Toolbox"
)
fi