mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 20:08:43 -04:00
30 lines
612 B
Bash
30 lines
612 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs flag-o-matic
|
|
|
|
DESCRIPTION="Resource Compiler for ELF binaries"
|
|
HOMEPAGE="http://elfembed.sourceforge.net/index.php"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 x86"
|
|
|
|
src_prepare(){
|
|
default
|
|
sed 's/gcc/\$\{CC\}/g' -i Makefile
|
|
}
|
|
|
|
src_compile(){
|
|
emake OPT="${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)"
|
|
}
|
|
|
|
src_install(){
|
|
dodir /usr/bin
|
|
install rc "${D}/usr/bin/rc"
|
|
install re "${D}/usr/bin/re"
|
|
}
|