Notes |
(0009084)
daniellaird
07-08-08 06:11
|
I have updated the patch (It all works fine) but without the examples not much to show. For now the patch just disables the tests and copies all supporting pngs/fonts etc into $ROOTFS. |
| |
(0009934)
zonque
07-24-08 04:09
|
can this go upstream, please?
Daniel |
| |
(0009944)
bernhardf
07-24-08 05:17
|
this package should use package/Makefile.autotools.in
See various other packages for examples on how this should look like.
Please redo it and attach an updated patch. TIA |
| |
(0009954)
daniellaird
07-24-08 05:52
|
Please find updated patch (adding_lite.patch) |
| |
(0009964)
bernhardf
07-24-08 07:27
|
+$(LITE_HOOK_POST_INSTALL):
+ mkdir -p $(ROOTFS)/usr/share/fonts/truetype/
+ mkdir -p $(ROOTFS)/usr/share/LiTE/examples/
+ cp -R $(LITE_DIR)/examples/*.png $(ROOTFS)/usr/share/LiTE/examples/
+ cp -R $(LITE_DIR)/data/*.png $(ROOTFS)/usr/share/LiTE/
+ cp -R $(LITE_DIR)/fonts/*.ttf $(ROOTFS)/usr/share/fonts/truetype/
+ touch $@
ROOTFS? You probably mean $(TARGET_DIR)
It would be better if you would use $(INSTALL), e.g.:
$(INSTALL) -d $(TARGET_DIR)/usr/share/LiTE/examples/
$(INSTALL) -d $(TARGET_DIR)/usr/share/fonts/truetype
$(INSTALL) -m0644 $(LITE_DIR)/data/*.png $(TARGET_DIR)/usr/share/LiTE/
$(INSTALL) -m0644 $(LITE_DIR)/examples/*.png $(TARGET_DIR)/usr/share/LiTE/examples/
$(INSTALL) -m0644 $(LITE_DIR)/fonts/*.ttf $(TARGET_DIR)/usr/share/fonts/truetype/
other than that it looks somewhat reasonable |
| |
(0010114)
daniellaird
07-28-08 02:10
|
Updated patch to not use $ROOTFS and use INSTALL.
Cheers
Daniel Laird |
| |