summaryrefslogtreecommitdiff
path: root/content/tmake-1.11.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-07-01 22:42:49 +0000
committerChris Larson <clarson@kergoth.com>2003-07-01 22:42:49 +0000
commit2ba996844db81f368f90c76a52e456712bdd0e4c (patch)
treee5d67e084535961c0c1b58b6dc0b0f69ae5303c2 /content/tmake-1.11.oe
parent0b7dfe31a9b3f2d19f3665821edc1fb450545990 (diff)
Many files:
Remove unnecessary base inherit. oe-1.0_bk.oe: Rename: content/oe-1.0_bk-r1.oe -> content/oe-1.0_bk.oe oe-1.0_bk-r1.oe: Rename: content/oe-1.0_bk.oe -> content/oe-1.0_bk-r1.oe tmake-1.11.oe: Add a few missing variables to tmake BKrev: 3f020e69dbkC3U9sTD1rCFFSuAne6Q
Diffstat (limited to 'content/tmake-1.11.oe')
-rw-r--r--content/tmake-1.11.oe28
1 files changed, 28 insertions, 0 deletions
diff --git a/content/tmake-1.11.oe b/content/tmake-1.11.oe
index e69de29bb2..ea3b68b403 100644
--- a/content/tmake-1.11.oe
+++ b/content/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}/usr/bin
+ install -m 0755 bin/tmake bin/progen ${D}/usr/bin/
+
+ install -d ${D}/usr/share/tmake
+ cp -R lib/* ${D}/usr/share/tmake/
+}
+
+PACKAGES="tmake"
+FILES=""
+FILES_tmake="/usr/bin/tmake /usr/bin/progen /usr/share/tmake/*"