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