diff options
Diffstat (limited to 'packages/fakeroot/fakeroot_1.2.13.bb')
-rw-r--r-- | packages/fakeroot/fakeroot_1.2.13.bb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/packages/fakeroot/fakeroot_1.2.13.bb b/packages/fakeroot/fakeroot_1.2.13.bb index 6867a39c93..e29cf162b4 100644 --- a/packages/fakeroot/fakeroot_1.2.13.bb +++ b/packages/fakeroot/fakeroot_1.2.13.bb @@ -1,14 +1,17 @@ DESCRIPTION = "Gives a fake root environment" -SECTION = "base" HOMEPAGE = "http://joostje.op.het.net/fakeroot/index.html" +SECTION = "base" LICENSE = "GPL" +# fakeroot needs getopt which is provided by the util-linux package +RDEPENDS = "util-linux" +PR = "r1" SRC_URI = "http://openzaurus.org/mirror/fakeroot_${PV}.tar.gz" inherit autotools do_stage() { - install -d ${STAGING_INCDIR}/fakeroot - install -m 644 *.h ${STAGING_INCDIR}/fakeroot - autotools_stage_all + install -d ${STAGING_INCDIR}/fakeroot + install -m 644 *.h ${STAGING_INCDIR}/fakeroot + autotools_stage_all } |