diff options
author | Chris Larson <clarson@kergoth.com> | 2004-09-13 23:45:24 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-09-13 23:45:24 +0000 |
commit | bccd726a68b80392fe34592ba96deb3c97d77283 (patch) | |
tree | bfc99fb45307e10bce03580a0040f1bbd26de317 /patcher | |
parent | c65af0edd12140dbc9f3422c2054ba6f7e0bdea9 (diff) |
BUGFIX: patcher.oeclass calls 'patcher', but the new patcher-native build installs it as 'patcher.py'.
BKrev: 41463114f3Jzhy_l40b6LBg2SCNJaA
Diffstat (limited to 'patcher')
-rw-r--r-- | patcher/patcher-native_20040913.oe | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/patcher/patcher-native_20040913.oe b/patcher/patcher-native_20040913.oe index e69de29bb2..2fb23878f4 100644 --- a/patcher/patcher-native_20040913.oe +++ b/patcher/patcher-native_20040913.oe @@ -0,0 +1,16 @@ +DESCRIPTION = "Patcher is a perl script for managing patches." +LICENSE = "Perl" +DEPENDS = "" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Holger Schurig <hs4233@mail.mn-solutions.de>" +INHIBIT_DEFAULT_DEPS = "1" +PACKAGES = "" +PR = "r1" + +SRC_URI = "http://www.holgerschurig.de/files/linux/patcher-${PV}.tar.bz2" +S = "${WORKDIR}/patcher" + +do_stage() { + install -m 0755 patcher.py ${STAGING_BINDIR}/patcher +} |