blob: 6f8fdbe8d072beaa39d2a65079d73eb4de89597d (
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
|
# Maintainer: kumen
# Contributor: nightuser <nightuser.android@gmail.com>
pkgname="stm32cubeide"
pkgver=1.16.1
_pkgver_ext=1.16.1_22882_20240916_0822
_pkg_file_name=st-stm32cubeide_1.16.1_22882_20240916_0822_amd64.sh.zip
pkgrel=3
pkgdesc="Integrated Development Environment for STM32"
arch=("x86_64")
makedepends=('imagemagick')
depends=('glibc' 'libusb' 'ncurses5-compat-libs' 'webkit2gtk' 'stlink-server')
optdepends=('jlink-software-and-documentation' 'stlink' 'arm-none-eabi-gdb')
conflicts=()
url="https://www.st.com/en/development-tools/stm32cubeide.html"
license=('custom:SLA0048')
options=(!strip)
# Download file with list of URLs to files
_curl_req_url="https://www.st.com/content/st_com_cx/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-ides/stm32cubeide/_jcr_content/get-software/getsw-table-nli.nocache.html/st-site-cx/components/containers/product/get-software-table-body.html"
_curl_req="$(curl -s --compressed -H "@${srcdir}http_headers" "$_curl_req_url" )"
# Extract actual download link to the desired file
_pkg_url="$(grep -m 1 "${_pkg_file_name}" <<< "$_curl_req")"
_pkg_url="$(awk -F'"' '{print $4}' <<< "$_pkg_url")"
_download_path="https://www.st.com""$_pkg_url"
#echo $_download_path
DLAGENTS=("https::/usr/bin/curl \
-gqb '' --retry 3 --retry-delay 3 \
-H "@${srcdir}http_headers" \
-o %o --compressed %u")
source=("${_pkg_file_name}"::"$_download_path"
"99-jlink.rules.patch"
"https://www.st.com/resource/en/license/SLA0048_STM32CubeIDE.pdf"
"http_headers"
"stm32cubeide.desktop"
"stm32cubeide"
"stm32cubeide_wayland"
)
sha256sums=('a455ab7cfb82990913b1569493b8716f32e953e00450f0f6e484c1b8963a8996'
'0f3f69f7c980a701bf814e94595f5acb51a5d91be76b74e5b632220cfb0e7bb3'
'SKIP'
'e390db4335686f4a99f04002625a9dce0058b631cb3205b700c1910bf129d73c'
'6648786eb5f998134e686ee27e3c6016e9b4af5558cf1e5ad3faf8dd01a45193'
'41e8d15ce488bff2c3da261d3da41699080cc6ed39d7b9ccbd80f21b55db10bc'
'03b654889dbfd87730fee8b172246669663b1e6f6c65003dd18aa756d4bafea3'
)
prepare(){
mkdir -p build
sh "${srcdir}/"st-stm32cubeide_${_pkgver_ext}_amd64.sh --quiet --noexec --nox11 --target "${srcdir}/build"
mkdir -p "${srcdir}/build/stlink-server"
sh "${srcdir}/build/"st-stlink-server.*.install.sh --quiet --noexec --nox11 --target "${srcdir}/build/stlink-server"
mkdir -p "${srcdir}/build/stlink-udev"
sh "${srcdir}/build/"st-stlink-udev-rules-*-linux-noarch.sh --quiet --noexec --nox11 --target "${srcdir}/build/stlink-udev"
mkdir -p "${srcdir}/build/jlink-udev"
sh "${srcdir}/build/"segger-jlink-udev-rules-*-linux-noarch.sh --quiet --noexec --nox11 --target "${srcdir}/build/jlink-udev"
}
package() {
cd "$srcdir"
msg2 'Installing STM32CubeIDE'
install -dm 755 "${pkgdir}/opt/${pkgname}"
tar zxf "./build/st-stm32cubeide_${_pkgver_ext}_amd64.tar.gz" -C "${pkgdir}/opt/${pkgname}"
msg2 'Installation of STlink server skipped'
#msg2 'Installing STlink server'
#install -dm 755 "${pkgdir}/usr/bin/"
#install -Dm 755 -o root -g root "${srcdir}/build/stlink-server/stlink-server" "${pkgdir}/usr/bin/"
msg2 'Installation of STlink udev rules skipped'
#msg2 'Installing STlink udev rules'
#install -dm 755 "${pkgdir}/usr/lib/udev/rules.d/"
#install -Dm 644 -o root -g root "$srcdir/build/stlink-udev/"*.rules "${pkgdir}/usr/lib/udev/rules.d/"
msg2 'Installation of JLink udev rules skipped'
#msg2 'Installing JLink udev rules'
#install -dm 755 "${pkgdir}/usr/lib/udev/rules.d/"
#install -Dm 644 -o root -g root "$srcdir/build/jlink-udev/"*.rules "${pkgdir}/usr/lib/udev/rules.d/"
#patch -i "${srcdir}/99-jlink.rules.patch" "${pkgdir}/usr/lib/udev/rules.d/99-jlink.rules"
msg2 'Installation of binary files'
install -dm 755 "${pkgdir}/usr/bin/"
install -Dm 755 "${srcdir}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -Dm 755 "${srcdir}/${pkgname}_wayland" "${pkgdir}/usr/bin/${pkgname}_wayland"
msg2 'Installing desktop shortcut and icon'
magick "${pkgdir}/opt/${pkgname}/icon.xpm" "${srcdir}/${pkgname}.png"
install -dm 755 "${pkgdir}/usr/share/pixmaps/"
install -dm 755 "${pkgdir}/usr/share/applications/"
install -Dm 644 "${srcdir}/${pkgname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname}.png"
install -Dm 644 "${srcdir}/stm32cubeide.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
#msg2 'Replace GDB by system'
#rm "${pkgdir}/opt/stm32cubeide/plugins/"com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32*/tools/bin/arm-none-eabi-gdb
#rm "${pkgdir}/opt/stm32cubeide/plugins/"com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32*/tools/bin/arm-none-eabi-gdb-add-index
#ln -s /usr/bin/arm-none-eabi-gdb "${pkgdir}/opt/stm32cubeide/plugins/"com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32*/tools/bin
#ln -s /usr/bin/arm-none-eabi-gdb-add-index "${pkgdir}/opt/stm32cubeide/plugins/"com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32*/tools/bin
msg2 'Create symlink from original directory name'
read -r default_install_path < "${srcdir}/build/default_install_path.txt"
install -dm 755 "${pkgdir}/opt/st/"
ln -s "/opt/${pkgname}" "${pkgdir}${default_install_path}"
msg2 'Installation of license file'
install -dm 755 "${pkgdir}/usr/share/licenses/${pkgname}/"
install -Dm 644 -o root -g root "${srcdir}/SLA0048_STM32CubeIDE.pdf" "${pkgdir}/usr/share/licenses/${pkgname}/"
}
#
# makepkg --printsrcinfo > .SRCINFO
#
# vim: set ts=8 sw=8 tw=0 noet:
|