blob: 9b3ba915a20e1d28625a6fc30076460bd5b52622 (
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
|
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Libraries and tools for C/C++ development on RP2040 and RP2350 microcontrollers."
HOMEPAGE="https://github.com/raspberrypi/pico-sdk"
SRC_URI="
https://github.com/raspberrypi/pico-sdk/releases/download/${PV}/${P}.tar.gz
-> ${P}.tar.gz
https://github.com/bluekitchen/btstack/archive/501e6d2b86e6c92bfb9c390bcf55709938e25ac1.tar.gz
-> btstack-501e6d2b86e6c92bfb9c390bcf55709938e25ac1.tar.gz
https://github.com/georgerobotics/cyw43-driver/archive/refs/tags/v1.1.0.tar.gz
-> cyw43-driver-1.1.0.tar.gz
https://github.com/lwip-tcpip/lwip/archive/refs/tags/STABLE-2_2_1_RELEASE.tar.gz
-> lwip-STABLE-2_2_1_RELEASE.tar.gz
https://github.com/Mbed-TLS/mbedtls/releases/download/mbedtls-3.6.2/mbedtls-3.6.2.tar.bz2
-> mbedtls-3.6.2.tar.bz2
https://github.com/hathach/tinyusb/archive/refs/tags/0.18.0.tar.gz
-> tinyusb-0.18.0.tar.gz
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
src_prepare() {
default
cp -r "${WORKDIR}"/btstack-501e6d2b86e6c92bfb9c390bcf55709938e25ac1/. "${S}/lib/btstack" || die
cp -r "${WORKDIR}"/cyw43-driver-1.1.0/. "${S}/lib/cyw43-driver" || die
cp -r "${WORKDIR}"/lwip-STABLE-2_2_1_RELEASE/. "${S}/lib/lwip" || die
cp -r "${WORKDIR}"/mbedtls-3.6.2/. "${S}/lib/mbedtls" || die
cp -r "${WORKDIR}"/tinyusb-0.18.0/. "${S}/lib/tinyusb" || die
}
src_install() {
dodir /opt/pico-sdk
cp -r "${S}/." "${D}/opt/pico-sdk/" || die
echo "PICO_SDK_PATH=/opt/pico-sdk" > "${T}/99pico-sdk" || die
doenvd "${T}/99pico-sdk"
}
pkg_postinst() {
elog "If you want to use the Pico SDK now, run:"
elog " source /etc/profile"
}
|