dev-util/intel-oneapi-base-toolkit-2025.2.0 yoinked directly from an archlinux package mirror, didn't do the deps yet
This commit is contained in:
parent
4a611d5d26
commit
4cd903bea0
3 changed files with 71 additions and 0 deletions
1
dev-util/intel-oneapi-base-toolkit/Manifest
Normal file
1
dev-util/intel-oneapi-base-toolkit/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST intel-oneapi-base-toolkit-2025.2.0.tar.zst 2417140226 BLAKE2B 33ccb83b4fcba47a4039bdf901497cd0d2bb2ff141aed3f29f657c42416484e6260351150e42f363b154afe915d8af9d69de673e6560c5bab3a9cf1881c46aa3 SHA512 f6a32b57b230668128ad08510df910403803158955f5bb8c340f5394279090d429279817fce115ef2f522ad01c2a96810a442315c60dff00aa2c306c344adec7
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="This"
|
||||
HOMEPAGE="https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=oneapi-toolkit&oneapi-toolkit-os=linux&oneapi-lin=offline"
|
||||
SRC_URI="https://ftp5.gwdg.de/pub/linux/archlinux/extra-testing/os/x86_64/${P}-3-x86_64.pkg.tar.zst -> ${P}.tar.zst"
|
||||
|
||||
S="${WORKDIR}/${P}"
|
||||
|
||||
LICENSE=""
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
RESTRICT="strip test"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
src_unpack() {
|
||||
mkdir "${S}"
|
||||
cd "${S}"
|
||||
tar --zstd -xvf "${DISTDIR}/${P}.tar.zst"
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
cd "${S}"
|
||||
rm .BUILDINFO .INSTALL .MTREE .PKGINFO
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cd "${S}"
|
||||
mkdir "${D}"
|
||||
insinto "${D}"
|
||||
doins -r opt etc usr
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
_SCRIPT="${PN}-${PV}_offline.sh"
|
||||
DESCRIPTION="This is a sample skeleton ebuild file"
|
||||
HOMEPAGE="https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit-download.html?packages=oneapi-toolkit&oneapi-toolkit-os=linux&oneapi-lin=offline"
|
||||
SRC_URI="https://registrationcenter-download.intel.com/akdlm/IRC_NAS/d640da34-77cc-4ab2-8019-ac5592f4ec19/${_SCRIPT}"
|
||||
|
||||
S="${WORKDIR}/${P}"
|
||||
|
||||
LICENSE=""
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE=""
|
||||
RESTRICT="strip test"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
src_unpack() {
|
||||
# mkdir "${S}"
|
||||
# sh "${DISTDIR}/${_SCRIPT}" --extract-only --remove-extracted-files no --extract-folder "${S}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# mkdir -p "${S}/opt/intel/oneapi"
|
||||
# runuser -u portage -- "${PN}-${PV}_offline"/install.sh --silent --eula accept --components all --install-dir "${S}/opt/intel/oneapi" --ignore-errors
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue