blob: 7bd88be3ac410cbb5f61f5170695d62f1771e8f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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>"
INHIBIT_DEFAULT_DEPS = "1"
SRC_URI = "http://www.holgerschurig.de/files/linux/patcher"
do_unpack() {
:
}
do_install() {
install -d ${D}${bindir}
install -m 0755 ${DL_DIR}/patcher ${D}/${bindir}
}
DEPENDS_prepend_delete = "patcher "
|