summaryrefslogtreecommitdiff
path: root/shopper
diff options
context:
space:
mode:
Diffstat (limited to 'shopper')
-rw-r--r--shopper/shopper_1.2.0.oe17
1 files changed, 10 insertions, 7 deletions
diff --git a/shopper/shopper_1.2.0.oe b/shopper/shopper_1.2.0.oe
index b6c29c1760..0caa1a9920 100644
--- a/shopper/shopper_1.2.0.oe
+++ b/shopper/shopper_1.2.0.oe
@@ -24,11 +24,14 @@ pkg_postinst() {
}
do_install() {
- install -d ${D}${palmtopdir}/{help/html/,bin,apps/Applications,pics}
- install -d ${D}/root/Applications/ShoppingListQt/
- install -m 0755 ${S}/Shopper ${D}${palmtopdir}/bin/
- install -m 0644 ${S}/Shopper.desktop ${D}${palmtopdir}/apps/Applications/
- install -m 0644 ${S}/Shopper.png ${D}${palmtopdir}/pics/
- install -m 0644 ${S}/Shopper.html ${D}${palmtopdir}/help/html/
- install -m 0644 ${S}/shoppinglist.xml ${D}/root/Applications/ShoppingListQt/shoppinglist.xml.new
+ install -d ${D}/${palmtopdir}/bin \
+ ${D}/${palmtopdir}/apps/Applications \
+ ${D}/${palmtopdir}/pics \
+ ${D}/${palmtopdir}/help/html
+ install -m 0755 ${S}/Shopper ${D}/${palmtopdir}/bin/
+ install -m 0644 ${S}/Shopper.desktop ${D}/${palmtopdir}/apps/Applications/
+ install -m 0644 ${S}/Shopper.png ${D}/${palmtopdir}/pics/
+ install -m 0644 ${S}/Shopper.html ${D}/${palmtopdir}/help/html/
+# BAD BAD BAD: packages never install into home directories. ever. --CL
+# install -m 0644 ${S}/shoppinglist.xml ${D}/root/Applications/ShoppingListQt/shoppinglist.xml.new
}