diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-14 11:29:52 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-14 11:29:52 +0000 |
commit | f7e913a0ea7554159f927f24f44bdc7b54c698f4 (patch) | |
tree | a534385de0baaf2dd6e687fe5e49dc890e72a768 /unionfs | |
parent | f92f5660f887626daac39805963dc3a69ec1a9c3 (diff) |
Merge openembedded@openembedded.bkbits.net:packages-devel
into handhelds.org:/home/kergoth/code/packages
2004/11/14 06:29:47-05:00 handhelds.org!kergoth
Split uniondbg out into unionfs-utils-dev, since it will likely never actually be used by anyone.
BKrev: 419741b0Vc8jkktZQ-z41JcSrKgdMg
Diffstat (limited to 'unionfs')
-rw-r--r-- | unionfs/unionfs-utils_1.0.3.oe | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unionfs/unionfs-utils_1.0.3.oe b/unionfs/unionfs-utils_1.0.3.oe index e69de29bb2..01a9b66253 100644 --- a/unionfs/unionfs-utils_1.0.3.oe +++ b/unionfs/unionfs-utils_1.0.3.oe @@ -0,0 +1,22 @@ +unionutils = "unionctl uniondbg" + +include unionfs_${PV}.inc + +PR = "r1" + +FILES_${PN} = "${sbindir}/unionctl" +FILES_${PN}-dev = "${sbindir}/uniondbg" + +do_compile () { + oe_runmake ${unionutils} +} + +do_install () { + install -d ${D}/${sbindir} + install -m 0755 ${unionutils} ${D}/${sbindir}/ + + install -d ${D}/${mandir}/man8 + for m in ${unionutils}; do + install -m 0644 man/$m.8 ${D}/${mandir}/man8/ || exit 1 + done +} |