29 lines
557 B
Bash
29 lines
557 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Simple generator for Forth based BootMenu scripts for Pegasos machines"
|
|
HOMEPAGE="http://tbs-software.com/morgoth/projects.html"
|
|
SRC_URI="http://tbs-software.com/morgoth/files/bootcreator-src.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="ppc -*"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
|
|
S=${WORKDIR}
|
|
|
|
src_compile() {
|
|
emake all
|
|
}
|
|
|
|
src_install() {
|
|
dosbin src/bootcreator
|
|
dodoc doc/README
|
|
|
|
insinto /etc
|
|
newins examples/example.bc bootmenu.example
|
|
}
|