You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
566 B
28 lines
566 B
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Simple Tool to configure Grub-Bootloader"
|
|
HOMEPAGE="https://web.archive.org/web/20100410042718/http://www.tux.org/pub/people/kent-robotti/looplinux"
|
|
SRC_URI="http://gentoo/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="-* amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-util/dialog-0.7"
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e "s:/usr/lib/grub:/$(get_libdir)/grub:g" \
|
|
grubconfig || die
|
|
eapply_user
|
|
}
|
|
|
|
src_install() {
|
|
dosbin grubconfig
|
|
dodoc README
|
|
}
|