blob: 9c18ef3a1532ae4811761564bcc895411991f3cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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,conf,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/bin/
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/
install -m 0644 ${OEDIR}/conf/oe.conf ${D}/usr/share/oe/conf/
}
|