26 lines
589 B
Bash
26 lines
589 B
Bash
|
# Copyright 2022 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
inherit rpm
|
||
|
|
||
|
DESCRIPTION="Libs for sys-apps/brcmocmcore"
|
||
|
HOMEPAGE="https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX-e9ee92fe1202416da05b56b08c"
|
||
|
SRC_URI="https://herbizarre.swordarmor.fr/garbage/${P}-1.x86_64.rpm"
|
||
|
|
||
|
LICENSE="all-rights-reserved"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64"
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="${DEPEND}"
|
||
|
BDEPEND=""
|
||
|
|
||
|
S="${WORKDIR}"
|
||
|
|
||
|
src_install() {
|
||
|
rm -r "${S}/usr/lib/.build-id" || die "rm of /usr/lib/.build-id failed"
|
||
|
cp -a "${S}/"* "${D}/" || die "Install failed!"
|
||
|
}
|