blob: 657ffea4f7291d398259b73c18bccef9bb791cbe (
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
# Maintainer: yjun <jerrysteve1101 at gmail dot com>
pkgbase="stm32cubeclt"
pkgname="stm32cubeclt"
# pkgname=("stm32cubeclt" "stlink-server" "stlink-udev-rules")
_pkgname="STM32CubeCLT"
pkgver=1.16.0
pkgrel=2
_pkgdesc="A toolset for third-party integrated development environment (IDE) providers, allowing the use \
of STMicroelectronics proprietary tools within their own IDE frameworks."
arch=('x86_64')
url="https://www.st.com/en/development-tools/stm32cubeclt.html"
license=('custom:SLA0048')
makedepends=('tar'
'bash')
options=('!strip')
_prefix="21983"
_date="20240628"
_suffix="1741"
_pkg_name=${pkgbase}_${pkgver}
_pkg_license_name="SLA0048_${_pkgname}.pdf"
_pkg_sh_name="st-${_pkg_name}_${_prefix}_${_date}_${_suffix}_amd64.sh"
_pkg_tar_name="st-${_pkg_name}_${_prefix}_${_date}_${_suffix}_amd64.tar.gz"
_pkg_zip_name="en.${_pkg_sh_name}.zip"
# User Agent
# copy from stm32cubeide
_curl_useragent="User-Agent: Mozilla/5.0 (X11; Linux ${CARCH}) \
AppleWebKit/537.36 (KHTML, like Gecko) \
Chrome/124.0.0.0 \
Safari/537.36"
_curl_useragent="$(printf '%s' "$_curl_useragent" | sed 's/[[:space:]]\+/ /g')"
_useragent_escaped="${_curl_useragent// /\\ }"
DLAGENTS=("https::/usr/bin/curl \
-gqb '' --retry 3 --retry-delay 3 \
-H ${_useragent_escaped} \
-o %o --compressed %u")
_curl_req_url="https://www.st.com/content/st_com_cx/en/products/development-tools/software-development-to\
ols/stm32-software-development-tools/stm32-ides/stm32cubeclt/_jcr_content/get-software/getsw-table-nli.no\
cache.html/st-site-cx/components/containers/product/get-software-table-body.html"
_curl_req="$(curl -s --compressed -H "$_curl_useragent" "$_curl_req_url")"
_pkg_url="$(grep -m 1 "${_pkg_zip_name}" <<< "$_curl_req")"
_pkg_url="$(awk -F'"' '{print $4}' <<< "$_pkg_url")"
_download_path="https://www.st.com""$_pkg_url"
source=("${_pkg_zip_name}"::"$_download_path"
"https://www.st.com/resource/en/license/${_pkg_license_name}")
sha256sums=('f66be954b886d8c104b8316d833a3e4d85f6abd652862cba477627424e3eb9a0'
'c6d92c00dee63e0f4a54d8ea62f82a646243c3e1480142ae3e7f4ca5d77d5702')
# not used, reserved.
_pkgname_stlink_server="stlink-server"
_pkgname_stlink_udev_rules="stlink-udev-rules"
_pkgver_stlink_server="2.1.1-1"
_pkgver_stlink_udev_rules="1.0.3-2"
# not used, reserved.
_pkg_stlink_server_name="${_pkgname_stlink_server}.${_pkgver_stlink_server}"
_pkg_stlink_udev_rules_name="${_pkgname_stlink_udev_rules}-${_pkgver_stlink_udev_rules}"
_pkg_stlink_server_sh_name="st-${_pkg_stlink_server_name}-linux-amd64.install.sh"
_pkg_stlink_udev_rules_sh_name="st-${_pkg_stlink_udev_rules_name}-linux-noarch.sh"
_bundle_sh_extract() {
local bundle_sh="$1"
local target="$2"
chmod u+x "${bundle_sh}"
rm -rf "${target}"
./${bundle_sh} --noexec --target "${target}"
}
_create_profile_script() {
local profile=$1
local pkg_root_dir=/opt/${pkgname}
local cubeprog_bindir="${pkg_root_dir}/STM32CubeProgrammer/bin"
local stlinkgdb_bindir="${pkg_root_dir}/STLink-gdb-server/bin"
local gnu_bindir="${pkg_root_dir}/GNU-tools-for-STM32/bin"
local cmake_bindir="${pkg_root_dir}/CMake/bin"
local ninja_bindir="${pkg_root_dir}/Ninja/bin"
local metadata_dir="${pkg_root_dir}"
echo "Installing shell profile $(basename ${profile})..."
install -Dm644 /dev/stdin "${profile}" << END
# Set OVERRIDE_SYSTEM_TOOLS to 1 to prioritize
# the use of tools provided by stm32cubeclt.
OVERRIDE_SYSTEM_TOOLS=0
prepend_path () {
case ":\$PATH:" in
*:"\$1":*)
;;
*)
PATH="\$1\${PATH:+:\$PATH}"
esac
}
if [ \$OVERRIDE_SYSTEM_TOOLS -ge 1 ];then
prepend_path "$gnu_bindir"
prepend_path "$ninja_bindir"
prepend_path "$cmake_bindir"
prepend_path "$stlinkgdb_bindir"
prepend_path "$cubeprog_bindir"
prepend_path "$metadata_dir"
else
append_path "$metadata_dir"
append_path "$cubeprog_bindir"
append_path "$stlinkgdb_bindir"
append_path "$cmake_bindir"
append_path "$ninja_bindir"
append_path "$gnu_bindir"
fi
export PATH
END
}
_install_license_pdf() {
echo "Installing license ${_pkg_license_name}..."
install -Dm644 ${srcdir}/${_pkg_license_name} -t \
"${pkgdir}/usr/share/licenses/${pkgname}/"
}
prepare() {
cd ${srcdir}
local pkg_target=${_pkg_name}
local stlink_server_target=${_pkg_name}/${_pkg_stlink_server_name}
local stlink_udev_rules_target=${_pkg_name}/${_pkg_stlink_udev_rules_name}
_bundle_sh_extract ${_pkg_sh_name} ${pkg_target}
# not used, reserved.
_bundle_sh_extract ${_pkg_name}/${_pkg_stlink_server_sh_name} \
${stlink_server_target}
_bundle_sh_extract ${_pkg_name}/${_pkg_stlink_udev_rules_sh_name} \
${stlink_udev_rules_target}
}
package_stm32cubeclt() {
pkgdesc="${_pkgdesc} - CLT for STM32"
# FIXME depends on ncurses, python2.7?
# libusb1.0.12 version or higher is required to run STM32CubeProgrammer.
# stlink provides stlink udev rules
depends=('stlink'
# "stlink-udev-rules"
'libusb'
'stlink-server'
# 'ncurses'
# 'python2'
)
install="$pkgname.install"
cd ${srcdir}/${_pkg_name}
local version=$(cat version.txt)
local profile="cubeclt-bin-path_${version}.sh"
echo "Installing ${_pkgname} ${version}..."
install -dm755 ${pkgdir}/opt/${pkgname}
tar -xf ${_pkg_tar_name} -C ${pkgdir}/opt/${pkgname}
_create_profile_script "${pkgdir}/etc/profile.d/${profile}"
_install_license_pdf
}
# not used, split to stand-alone stlink-server on AUR https://aur.archlinux.org/packages/stlink-server.
package_stlink-server() {
# pkgver=${_pkgver_stlink_server}
pkgdesc="${_pkgdesc} - stlink tcp server to permit several applications to share the same usb device"
# stlink provides stlink udev rules
depends=("stlink"
# "stlink-udev-rules"
"libusb")
cd ${srcdir}/${_pkg_name}/${_pkg_stlink_server_name}
chmod u+x ./stlink-server
set junk $(./stlink-server 2>&1 -v)
version_string=$3
timestamp=$4
echo "Installing stlink-server ${version_string} ${timestamp}..."
install -Dm755 ${_pkgname_stlink_server} -t ${pkgdir}/usr/bin
_install_license_pdf
}
# not unsed, replace it with stlink package from offical repo
package_stlink-udev-rules() {
# pkgver=${_pkgver_stlink_udev_rules}
pkgdesc="${_pkgdesc} - STLink udev rules"
depends=('systemd') #depends on udev
cd ${srcdir}/${_pkg_name}/${_pkg_stlink_udev_rules_name}
echo "Installing stlink-udev-rules..."
for _udev_rule in ./*.rules; do
install -Dm644 "${_udev_rule}" -t "${pkgdir}/usr/lib/rules.d/"
done
_install_license_pdf
}
# vim: set sw=2 ts=2 et:
|