summaryrefslogtreecommitdiff
blob: dc12643c9146f872887d5bfc7661b6b58ba3d83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

MY_P=${PN}_${PV}
DESCRIPTION="Busybox binaries for Mindi rootfs."
HOMEPAGE="http://www.mondorescue.org"
SRC_URI="ftp://ftp.mondorescue.org/debian/3.1/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""

DEPEND="virtual/libc"

S="${WORKDIR}/mindi-busybox-stable"

src_compile() {
    cd ${S}
    make oldconfig
    make busybox
}

src_install() {
    dodir /usr/lib/mindi/rootfs
    cd ${S}
    make install PREFIX=${D}/usr/lib/mindi/rootfs
}