diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-11 23:18:45 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-11 23:18:45 +0000 |
commit | be872529e5d6c217e625d3e2e2924fee468e2a32 (patch) | |
tree | 37c59584f4860e8640898e052dcd259bf88a8ad2 /patcher | |
parent | 01ff6041616f89c86b6b237a9417303eda9eec71 (diff) |
new SRC_URI for patcher
BKrev: 4050f3d5Gh_05bsSRPefFdHSnzkOgQ
Diffstat (limited to 'patcher')
-rw-r--r-- | patcher/patcher.oe | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/patcher/patcher.oe b/patcher/patcher.oe index e69de29bb2..7e280d859c 100644 --- a/patcher/patcher.oe +++ b/patcher/patcher.oe @@ -0,0 +1,19 @@ +DESCRIPTION=Patcher is a perl script which I use for managing patches. It's powerful, easy to use, and fast. +LICENSE=Unknown +DEPENDS= +SECTION=base +PRIORITY=optional +MAINTAINER="Chris Larson <kergoth@handhelds.org>" + +SRC_URI = http://www.holgerschurig.de/files/linux/patcher + +do_unpack() { + oenote "Nothing to unpack!" +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${DL_DIR}/patcher ${D}/${bindir} +} + +DEPENDS_prepend_delete="patcher " |