# Copyright 2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit toolchain-funcs SRC_URI="" SLOT="0" KEYWORDS="~amd64" S=${WORKDIR} src_unpack() { echo 'int main() {}' > main.c } src_compile() { tc-export CC emake main } src_install() { for x in {1..100}; do newbin "${S}"/main main${x} done }