diff options
Diffstat (limited to 'patcher')
-rw-r--r-- | patcher/patcher_1.0.oe | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/patcher/patcher_1.0.oe b/patcher/patcher_1.0.oe index e69de29bb2..f2c5724502 100644 --- a/patcher/patcher_1.0.oe +++ b/patcher/patcher_1.0.oe @@ -0,0 +1,24 @@ +SRC_URI="http://www.mn-logistik.de/unsupported/pxa250/patcher" +DESCRIPTION="Patcher tool" +LICENSE="Unknown" +DEPENDS= +SECTION="base" +PRIORITY="optional" +MAINTAINER="Chris Larson <kergoth@handhelds.org>" + +inherit base + +do_unpack() { + oenote "Nothing to unpack!" +} + +do_stage() { + install -m 0755 ${DL_DIR}/patcher ${STAGING_BINDIR}/ +} + +do_install() { + install -d ${D}/usr/bin + install -m 0755 ${DL_DIR}/patcher ${D}/usr/bin +} + +DEPENDS_prepend_delete="patcher " |