diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-13 17:12:50 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-13 17:12:50 +0000 |
commit | c66ca9c303bb6078b513c6b0f528667da74396ee (patch) | |
tree | 6313474cc0dc81f68d8e860834eed46dce44fe87 /tmake | |
parent | fc22411e12ff4762ec5997d543c5637398580437 (diff) |
Merge direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/paths
into direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/packages
2004/01/13 11:10:14-06:00 ti.com!kergoth
Merge openembedded@openembedded.bkbits.net:packages
into direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/paths
2004/01/13 10:56:32-06:00 ti.com!kergoth
Remove hardcoded references to target paths in a number of packages, replacing them with the use of our target path variables.
2004/01/13 17:40:06+01:00 uni-frankfurt.de!mickeyl
Merge bk://openembedded@openembedded.bkbits.net/packages
into gandalf.tm.informatik.uni-frankfurt.de:/usr/local/projects/oe-packages
2004/01/13 14:24:53+01:00 uni-frankfurt.de!mickeyl
add pyserial and sgmlop to buildsystem
BKrev: 40042712PUToOUzefh1XdY4q23VfEA
Diffstat (limited to 'tmake')
-rw-r--r-- | tmake/tmake_1.11.oe | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tmake/tmake_1.11.oe b/tmake/tmake_1.11.oe index e69de29bb2..eb095fcf77 100644 --- a/tmake/tmake_1.11.oe +++ b/tmake/tmake_1.11.oe @@ -0,0 +1,28 @@ +SRC_URI="ftp://ftp.trolltech.com/pub/freebies/tmake/tmake-${PV}.tar.gz" +DESCRIPTION="tmake is an easy-to-use tool for creating and maintaining makefiles across many platforms and compilers." +LICENSE="Unknown" +DEPENDS="" +SECTION="base" +PRIORITY="optional" +MAINTAINER="Chris Larson <kergoth@handhelds.org>" + +S="${WORKDIR}/${P}" + +do_stage() { + install -m 0755 bin/tmake bin/progen ${STAGING_BINDIR}/ + + install -d ${STAGING_DIR}/share/tmake + cp -R lib/* ${STAGING_DIR}/share/tmake/ +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 bin/tmake bin/progen ${D}${bindir}/ + + install -d ${D}${datadir}/tmake + cp -R lib/* ${D}${datadir}/tmake/ +} + +PACKAGES="tmake" +FILES="" +FILES_tmake="${bindir} ${datadir}/tmake" |