blob: 039349ebe17a3b943c7687a1d45dcebce305164f (
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
|
# Maintainer: Gaƫl PORTAY <gael.portay@gmail.com>
pkgname=aarch64be-musl-bleeding-edge-toolchain
pkgver=2024.05
pkgrel=1
pkgdesc="Ready-to-use cross-compilation toolchain provided by bootlin.com"
arch=("x86_64")
url="https://toolchains.bootlin.com/"
license=("GPL")
source=("https://toolchains.bootlin.com/downloads/releases/toolchains/aarch64be/tarballs/aarch64be--musl--bleeding-edge-2024.05-1.tar.xz"
"profile.sh-aarch64be-musl-bleeding-edge-toolchain")
install="hooks.install-aarch64be-musl-bleeding-edge-toolchain"
sha256sums=('af4ca347a5b1e725b0e0c7a4bccc9813005a3fbeb7d1127b4e5c4b07cc22eb5e'
'942b6ff12b13c64748ce3d2b00829cc8649260b259c1efa06e4d6c6862a6661e')
build() {
cd "aarch64be--musl--bleeding-edge-2024.05-1"
sh relocate-sdk.sh "/opt/aarch64be-musl-bleeding-edge"
}
package() {
options=(!strip)
cd "aarch64be--musl--bleeding-edge-2024.05-1"
mkdir -p "$pkgdir/opt/aarch64be-musl-bleeding-edge/"
cp -a * "$pkgdir/opt/aarch64be-musl-bleeding-edge/"
rm -f "$pkgdir/opt/aarch64be-musl-bleeding-edge/{buildroot.config,relocate-sdk.sh,summary.csv,share/buildroot/sdk-location}"
mkdir -p "$pkgdir/etc/profile.d/"
install -m0644 "$srcdir/profile.sh-aarch64be-musl-bleeding-edge-toolchain" "$pkgdir/etc/profile.d/aarch64be-musl-bleeding-edge-toolchain.sh"
}
|