diff options
-rw-r--r-- | recipes-virtualization/mux-server/mux-server_1.02.bb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/recipes-virtualization/mux-server/mux-server_1.02.bb b/recipes-virtualization/mux-server/mux-server_1.02.bb index 5382f23..744a84c 100644 --- a/recipes-virtualization/mux-server/mux-server_1.02.bb +++ b/recipes-virtualization/mux-server/mux-server_1.02.bb | |||
@@ -10,9 +10,18 @@ S = "${WORKDIR}/git" | |||
10 | 10 | ||
11 | EXTRA_OEMAKE='HOSTCC="${CC}"' | 11 | EXTRA_OEMAKE='HOSTCC="${CC}"' |
12 | 12 | ||
13 | inherit deploy | ||
14 | |||
13 | do_install () { | 15 | do_install () { |
14 | install -d ${D}${bindir} | 16 | install -d ${D}${bindir} |
15 | install -m 755 mux_server ${D}${bindir} | 17 | install -m 755 mux_server ${D}${bindir} |
16 | } | 18 | } |
17 | 19 | ||
20 | do_deploy() { | ||
21 | install -d ${DEPLOYDIR}/hv | ||
22 | install -m 755 mux_server ${DEPLOYDIR}/hv/mux_server-${PKGV}-${PKGR} | ||
23 | ln -sf mux_server-${PKGV}-${PKGR} ${DEPLOYDIR}/hv/mux_server | ||
24 | } | ||
25 | addtask deploy after do_install | ||
26 | |||
18 | BBCLASSEXTEND = "native nativesdk" | 27 | BBCLASSEXTEND = "native nativesdk" |