# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit flx-tools DESCRIPTION="a dumb one" LICENSE="public-domain" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" src_unpack() { mkdir "${S}" unpack_plist part2 "${S}/fs" } src_compile() { check_symbol "${S}/fs" tar czf "${S}/disk.tgz" \ -C "${S}/fs" \ . } src_install() { insinto /fs doins disk.tgz }