diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-04 16:28:11 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-04 16:28:11 +0000 |
commit | 81e7d64ca89e135f269827479e70a7d1457aeee2 (patch) | |
tree | 3a44e75e53cd8067fef0781b5a5a8ebccd1a49a3 /meta/packages/patch/patch.inc | |
parent | 387a0ad011929c68cc8b9f575796914152e81999 (diff) | |
download | openembedded-core-81e7d64ca89e135f269827479e70a7d1457aeee2.tar.gz openembedded-core-81e7d64ca89e135f269827479e70a7d1457aeee2.tar.bz2 openembedded-core-81e7d64ca89e135f269827479e70a7d1457aeee2.zip |
patch: added 2.5.9 from OE (needed for quilt)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1438 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/patch/patch.inc')
-rw-r--r-- | meta/packages/patch/patch.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/packages/patch/patch.inc b/meta/packages/patch/patch.inc new file mode 100644 index 0000000000..4ce51703aa --- /dev/null +++ b/meta/packages/patch/patch.inc @@ -0,0 +1,19 @@ +DESCRIPTION = "patch takes a patch file containing a difference listing \ +produced by the diff program and applies those differences to one or more \ +original files, producing patched versions." +LICENSE = "GPL" +PRIORITY = "standard" +SECTION = "utils" + +SRC_URI = "${GNU_MIRROR}/patch/patch-${PV}.tar.gz" +S = "${WORKDIR}/patch-${PV}" + +inherit autotools update-alternatives + +do_install_append () { + mv ${D}${bindir}/patch ${D}${bindir}/patch.${PN} +} + +ALTERNATIVE_NAME = "patch" +ALTERNATIVE_PATH = "patch.${PN}" +ALTERNATIVE_PRIORITY = "100" |