aboutsummaryrefslogtreecommitdiffstats
path: root/packages/tmake
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2005-06-30 08:19:37 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-06-30 08:19:37 +0000
commitc8e5702127e507e82e6f68a4b8c546803accea9d (patch)
tree00583491f40ecc640f2b28452af995e3a63a09d7 /packages/tmake
parent87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff)
downloadopenembedded-c8e5702127e507e82e6f68a4b8c546803accea9d.tar.gz
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/tmake')
-rw-r--r--packages/tmake/.mtn2git_empty0
-rw-r--r--packages/tmake/tmake_1.11.bb28
2 files changed, 28 insertions, 0 deletions
diff --git a/packages/tmake/.mtn2git_empty b/packages/tmake/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/tmake/.mtn2git_empty
diff --git a/packages/tmake/tmake_1.11.bb b/packages/tmake/tmake_1.11.bb
index e69de29bb2..63f871918a 100644
--- a/packages/tmake/tmake_1.11.bb
+++ b/packages/tmake/tmake_1.11.bb
@@ -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 = "devel"
+PRIORITY = "optional"
+MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
+
+S = "${WORKDIR}/tmake-${PV}"
+
+do_stage() {
+ install -m 0755 bin/tmake bin/progen ${STAGING_BINDIR}/
+
+ install -d ${STAGING_DATADIR}/tmake
+ cp -R lib/* ${STAGING_DATADIR}/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"