diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2010-05-15 22:15:37 +0200 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2010-05-15 22:41:36 +0200 |
commit | 9f59941ae4c40c1d0a56b2f66656e2867e43fc52 (patch) | |
tree | abebe4613af21261a10e3d0770712bd0e6ad4b25 | |
parent | 30063031f3b5d7c0c88aeb709cb17d0a337a9183 (diff) |
ant-native: convert to new staging system
* bump PR to cover same strangness
-rw-r--r-- | recipes/ant/ant-native_1.7.1.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/recipes/ant/ant-native_1.7.1.bb b/recipes/ant/ant-native_1.7.1.bb index 405026bbd4..b4fdb054f9 100644 --- a/recipes/ant/ant-native_1.7.1.bb +++ b/recipes/ant/ant-native_1.7.1.bb @@ -1,8 +1,9 @@ DESCRIPTION = "Another Neat Tool - build system for Java" LICENSE = "AL2.0" - AUTHOR = "Apache Software Foundation" HOMEPAGE = "http://ant.apache.org" +PR = "r1" + SRC_URI = "\ http://ftp.riken.jp/net/apache/ant/source/apache-ant-${PV}-src.tar.gz \ @@ -58,9 +59,9 @@ do_compile() { sed -i -e"s|@JAR_FILE@|$cp|" ${WORKDIR}/ant } -do_stage_append() { - install -d ${bindir} - install -m 0755 ${WORKDIR}/ant ${bindir} +do_install_append() { + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/ant ${D}${bindir} } SRC_URI[md5sum] = "2a44ff60456cf67bb83771cfcedb8e33" |