diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-03 10:46:02 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-03 10:46:02 +0200 |
commit | 683fd147858049097bd3684326210ddcb9460572 (patch) | |
tree | 8a47823a434fc0ed9e5dd96c828222f2f2849a26 /template/packaging | |
parent | 64ffd7a9f9604805c01f8bb2fd32616c3adf3ec0 (diff) |
Make more generic template.
Adding variable to fill config.xml content.
Change-Id: Ie9557e4ba89457026fb2db4f8d574e6e19af8556
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'template/packaging')
-rw-r--r-- | template/packaging/wgt/config.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/packaging/wgt/config.xml.in b/template/packaging/wgt/config.xml.in index 99c0168..250878a 100644 --- a/template/packaging/wgt/config.xml.in +++ b/template/packaging/wgt/config.xml.in @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <widget xmlns="http://www.w3.org/ns/widgets" id="@PROJECT_NAME@" version="@PROJECT_VERSION@"> <name>@PROJECT_NAME@</name> - <icon src="icon.png"/> - <content src="htdocs/index.html" type="application/vnd.agl.html.hybrid"/> + <icon src="@PROJECT_ICON@"/> + <content src="@WIDGET_ENTRY_POINT@" type="@WIDGET_TYPE@"/> <description>@PROJECT_DESCRIPTION@</description> - <author>Romain Forlot <romain.forlot@iot.bzh></author> - <license>APL 2.0</license> + <author>@PROJECT_AUTHOR@ <@PROJECT_AUTHOR_MAIL@></author> + <license>@PROJECT_LICENCE@</license> </widget> |