# Maintainer: taotieren pkgbase=csky-toolchain-900-series-bin pkgname=($pkgbase csky-riscv64-linux-900-series-bin csky-riscv64-elf-900-series-bin csky-toolchain-900-series-guide-bin) pkgver=1.10.5.2 pkgrel=1 arch=('x86_64') url='https://occ.t-head.cn/community/download?id=3890532453097742336' license=('Apache') provides=() #conflicts=() depends=('filesystem') makedepends=('tar') source=("https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource/null/1614234913073/ReleaseNotes.pdf" "csky-riscv64-linux-900-series-bin-${pkgver}.tar.gz::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource/1356021/1619526740962/riscv64-linux-x86_64-20210310.tar.gz" "csky-riscv64-elf-900-series-bin-${pkgver}.tar.gz::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource/1356021/1615463616133/riscv64-elf-x86_64-20210310.tar.gz" "https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource/1356021/1616405195522/ReleaseNote.pdf" "T-HEAD RISC-V LD Manual.pdf::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/cop-image-prod/resource/420257228264570880/1577083695234/T-HEAD+RISC-V+LD+Manual+V1.4.2.pdf" "T-HEAD RISC-V GCC Manual.pdf::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/cop-image-prod/resource/420257228264570880/1577083609604/T-HEAD+RISC-V+GCC+Manual+V1.4.2.pdf" "T-HEAD RISC-V GDB Manual.pdf::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/cop-image-prod/resource/420257228264570880/1577083669041/T-HEAD+RISC-V+GDB+Manual+V1.4.2.pdf" "T-HEAD RISC-V AS Manual.pdf::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/cop-image-prod/resource/420257228264570880/1577083640288/T-HEAD+RISC-V+AS+Manual+V1.4.2.pdf" "T-HEAD软件开发指南V1.7.pdf::https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource/1355977/1615892629021/T-HEAD%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E6%8C%87%E5%8D%97V1.7.pdf" ) sha256sums=('e70dca4e839c503d0efff7b078c5418f0d28d0e79a032d50e5e39682507c82ae' '10db8a71ad787fcc7fe8b94af0ca52c6d148ba0e10f255d221bba7cf798d3a9f' '517987f584ec22efc07c36179f7678e70fd95bb5b4f4166539953e052190cd99' 'fa50226512df02aaf348a36825c40b715fc320f66a2603e79426344f93b4a912' 'a132754abca8e8956169a33f4239ef14e8f309259168dc8c0531e4df19e1f0f2' '02c47ffb157456711bb0ad3f9848a02ee939e17cf0ed649d985b2dd0c6f744de' '87cf75b68fa5792905cc4e1f0649a7b382c30d5986d479d1cd36d94a36c9e0a9' '19b7b689c92a8fc762c7e2c3ca05798f432a41d6a05a3ae69a6f96333c73c404' 'f552d20599d73f824e44a03d8ca49fe74b59e838a97352a2596042ba8cad422f') noextract=(csky-riscv64-linux-900-series-bin-${pkgver}.tar.gz csky-riscv64-elf-900-series-bin-${pkgver}.tar.gz) package_csky-toolchain-900-series-bin() { pkgdesc="C-Sky toolchain 900 series" depends=(csky-riscv64-linux-900-series-bin csky-riscv64-elf-900-series-bin csky-toolchain-900-series-guide-bin) } package_csky-riscv64-linux-900-series-bin() { pkgdesc="C-Sky riscv64 linux for 900 series" install -dm0755 "${pkgdir}/opt/t-head/${pkgname%-bin}" tar -xf "${srcdir}/${pkgname}-${pkgver}.tar.gz" -C "${pkgdir}/opt/t-head/${pkgname%-bin}" --no-same-owner --no-same-permissions install -Dm0755 /dev/stdin "${pkgdir}/etc/profile.d/${pkgname%-bin}.sh" << EOF #!/bin/sh [ -d /opt/t-head/${pkgname%-bin}/bin ] && append_path '/opt/t-head/${pkgname%-bin}/bin' export PATH EOF } package_csky-riscv64-elf-900-series-bin() { pkgdesc="C-Sky riscv64 elf for 900 series" install -dm0755 "${pkgdir}/opt/t-head/${pkgname%-bin}" tar -xf "${srcdir}/${pkgname}-${pkgver}.tar.gz" -C "${pkgdir}/opt/t-head/${pkgname%-bin}" --no-same-owner --no-same-permissions install -Dm0755 /dev/stdin "${pkgdir}/etc/profile.d/${pkgname%-bin}.sh" << EOF #!/bin/sh [ -d /opt/t-head/${pkgname%-bin}/bin ] && append_path '/opt/t-head/${pkgname%-bin}/bin' export PATH EOF } package_csky-toolchain-900-series-guide-bin() { pkgdesc="C-Sky toolchain guide for 900 series" install -dm0755 "${pkgdir}/opt/t-head/${pkgname%-bin}" cp -r "${srcdir}"/*.pdf "${pkgdir}/opt/t-head/${pkgname%-bin}" } # vim: ts=4 sw=4 et