blob: 02f80951e265bbfa99fe7b1a662bee072990da0a (
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
|
# Maintainer: Matthias Blaicher <matthias at blaicher dot com>
#
# NOTE: If you plan on using the usbblaster make sure you are member of the plugdev group.
# NOTE: Altera has dramatically changed their packing in regards to version 12. This
# PKGBUILD will install the full Altera suite now. Be aware that the space requirement
# is around 13GB.
#
pkgname=quartus-standard
pkgver=16.1.2.203
_oldver=16.1.0.196
pkgrel=1
pkgdesc="Quartus Prime Standard Edition design software for Altera FPGA's. Modular package"
arch=('i686' 'x86_64')
url="http://dl.altera.com/?edition=standard"
license=('custom')
_alteradir="/opt/altera"
# According to the installer script, these dependencies are needed for the installer
if [[ $CARCH = i686 ]]
then
depends=('desktop-file-utils' 'expat' 'fontconfig' 'freetype2'
'glibc' 'gtk2' 'libcanberra' 'libpng' 'libpng12' 'libice' 'libsm'
'util-linux' 'ncurses' 'tcl' 'tcllib' 'zlib' 'libx11' 'libxau'
'libxdmcp' 'libxext' 'libxft' 'libxrender' 'libxt' 'libxtst')
fi
if [[ $CARCH = x86_64 ]]
then
depends=('desktop-file-utils' 'expat' 'fontconfig' 'freetype2'
'glibc' 'gtk2' 'libcanberra' 'libpng' 'libpng12' 'libice' 'libsm'
'util-linux' 'ncurses' 'tcl' 'tcllib' 'zlib' 'libx11' 'libxau'
'libxdmcp' 'libxext' 'libxft' 'libxrender' 'libxt' 'libxtst'
'lib32-expat' 'lib32-fontconfig' 'lib32-freetype2' 'lib32-glibc'
'lib32-gtk2' 'lib32-libcanberra' 'lib32-libpng' 'lib32-libpng12'
'lib32-libice' 'lib32-libsm' 'lib32-util-linux' 'lib32-ncurses'
'lib32-zlib' 'lib32-libx11' 'lib32-libxau' 'lib32-libxdmcp'
'lib32-libxext' 'lib32-libxft' 'lib32-libxrender' 'lib32-libxt'
'lib32-libxtst')
fi
source=("http://download.altera.com/akdlm/software/acdsinst/${_oldver%.*.*}/${_oldver##*.}/ib_installers/QuartusSetup-${_oldver}-linux.run"
"http://download.altera.com/akdlm/software/acdsinst/${pkgver%.*}/${pkgver##*.}/update/QuartusSetup-${pkgver}-linux.run"
"quartus.sh" "quartus.desktop" "51-usbblaster.rules" "quartus.install")
md5sums=('0ff8c051c26f7b4c15bf5d203efae13e'
'32dd0d62ef5a93c16fc9e6a5846dbdcc'
'067c444cae7fe31d3608245712b43ce8'
'32b17cb8b992fc2dccd33d87f0dcd8ce'
'f5744dc4820725b93917e3a24df13da9'
'a331a81c44aed062a7af6d28542c3d82')
options=(!strip !upx) # Stripping and UPX will takes ages, I'd avoid it.
install='quartus.install'
PKGEXT=".pkg.tar" # Do not compress
package() {
cd "${srcdir}"
# TODO: Make bogus $DISPLAY
chmod a+x "QuartusSetup-${_oldver}-linux.run"
chmod a+x "QuartusSetup-${pkgver}-linux.run"
echo "installing the base of ${_oldver}"
DISPLAY="" ./"QuartusSetup-${_oldver}-linux.run" --mode unattended --unattendedmodeui none --installdir "${pkgdir}/${_alteradir}"
cat <<EOF
Due to some technical limits, the update has to be installed with manual intervention.
In the following installation guide:
- say no when asked of "Allow patches to be uninstalled", if ever asked
- when asked of "the installation to update", use the following path:
${pkgdir}/${_alteradir}
You should copy it elsewhere NOW as the installation will flush the console.
EOF
read -p "Press enter to continue"
echo "launching the installer"
./"QuartusSetup-${pkgver}-linux.run"
# Remove uninstaller and install logs since we have a working package management
rm -r "${pkgdir}${_alteradir}/uninstall"
rm -r "${pkgdir}${_alteradir}/logs"
# Replace altera directory in integration files
sed -i.bak "s,_alteradir,$_alteradir,g" quartus.sh
sed -i.bak "s,_alteradir,$_alteradir,g" quartus.desktop
# Copy license file
install -D -m644 "${pkgdir}${_alteradir}/licenses/license.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
# Install integration files
install -D -m755 quartus.sh "${pkgdir}/etc/profile.d/quartus.sh"
install -D -m644 51-usbblaster.rules "${pkgdir}/etc/udev/rules.d/51-usbblaster.rules"
install -D -m644 quartus.desktop "${pkgdir}/usr/share/applications/quartus.desktop"
}
# vim:set ts=2 sw=2 et:
|