summaryrefslogtreecommitdiff
path: root/shopper
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-04-20 03:11:30 +0000
committerChris Larson <clarson@kergoth.com>2004-04-20 03:11:30 +0000
commit210df3ce941d17ac9c0602a9f36c55328c6f5503 (patch)
tree2fa720957b2822f7288af0b27df38ca11e22f5c9 /shopper
parent1ce1f6f837ae775b06c2c5ada398564f930a82d4 (diff)
Merge
2004/04/19 14:02:59-05:00 ti.com!a0868066 Merges. 2004/04/19 14:00:46-05:00 ti.com!a0868066 Killing usage of {} expansion, which isnt supported by the ash shell. BKrev: 408494e2t24Aqbe2prpXURtnZlhCmA
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
}