diff options
author | Chris Larson <clarson@kergoth.com> | 2003-07-01 21:46:17 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-07-01 21:46:17 +0000 |
commit | 0b7dfe31a9b3f2d19f3665821edc1fb450545990 (patch) | |
tree | 375bba70d1c9f7dfad5b45a37f8c48400af8b5cb | |
parent | cae17d6fc4003f0cfdd648db5146ab7f49a0ce06 (diff) |
bk
BKrev: 3f020129b9pJvS7Vd01X4tm4JM-VMg
-rw-r--r-- | content/oe-1.0_bk.oe | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/content/oe-1.0_bk.oe b/content/oe-1.0_bk.oe index e69de29bb2..138906ffdc 100644 --- a/content/oe-1.0_bk.oe +++ b/content/oe-1.0_bk.oe @@ -0,0 +1,17 @@ +DESCRIPTION="OpenEmbedded Build Tools" +LICENSE="GPL" +SECTION="base" +RDEPENDS="python" +RDEPENDS_ipk="python" +RDEPENDS_rpm="python2" +PRIORITY="optional" +MAINTAINER="OpenEmbedded Team <openembedded-devel@lists.sourceforge.net>" + +do_install() { + install -d ${D}/usr/{share/oe/{build,classes,oe{,/parse}},bin} + install -m 0755 ${OEDIR}/bin/oe{make{,d},build} ${D}/usr/bin/ + install -m 0755 ${OEDIR}/bin/build/oe{build.sh,debug,note,fatal} ${D}/usr/share/oe/build/ + install -m 0644 ${OEDIR}/bin/classes/*.oeclass ${D}/usr/share/oe/classes/ + install -m 0644 ${OEDIR}/bin/oe/*.py ${D}/usr/share/oe/oe + install -m 0644 ${OEDIR}/bin/oe/parse/*.py ${D}/usr/share/oe/oe/parse/ +} |