diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/config.xml | 16 | ||||
-rw-r--r-- | package/messaging.desktop | 11 | ||||
-rw-r--r-- | package/package.pro | 24 |
3 files changed, 20 insertions, 31 deletions
diff --git a/package/config.xml b/package/config.xml deleted file mode 100644 index cccf13c..0000000 --- a/package/config.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<widget xmlns="http://www.w3.org/ns/widgets" id="messaging" version="0.1"> - <name>Messaging</name> - <icon src="icon.png"/> - <content src="bin/messaging" type="application/vnd.agl.native"/> - <description>Messaging Application</description> - <author>Qt</author> - <license>APL 2.0</license> - <feature name="urn:AGL:widget:required-api"> - <param name="bluetooth-map" value="ws" /> - </feature> - <feature name="urn:AGL:widget:required-permission"> - <param name="urn:AGL:permission::public:no-htdocs" value="required" /> - <param name="urn:AGL:permission::public:display" value="required" /> - </feature> -</widget> diff --git a/package/messaging.desktop b/package/messaging.desktop new file mode 100644 index 0000000..ae9f483 --- /dev/null +++ b/package/messaging.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +Name=Messaging +Comment=Messaging +GenericName=Messaging +Exec=messaging +#Icon=messaging +Terminal=false +Type=Application +Categories=System; +StartupNotify=true diff --git a/package/package.pro b/package/package.pro index 3620f37..213f7a2 100644 --- a/package/package.pro +++ b/package/package.pro @@ -1,18 +1,12 @@ +TEMPLATE = aux -DISTFILES = config.xml +icon.path = /usr/share/icons/hicolor/scalable +icon.files += $$_PRO_FILE_PWD_/messaging.svg +icon.CONFIG = no_check_exist -copy_config.target = $$OUT_PWD/root/config.xml -copy_config.depends = $$_PRO_FILE_PWD_/config.xml -copy_config.commands = $(COPY_FILE) \"$$replace(copy_config.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_config.target, /, $$QMAKE_DIR_SEP)\" -QMAKE_EXTRA_TARGETS += copy_config -PRE_TARGETDEPS += $$copy_config.target +desktop.path = /usr/share/applications +desktop.files = $$_PRO_FILE_PWD_/messaging.desktop +desktop.CONFIG = no_check_exist -WGT_TYPE = -CONFIG(debug, debug|release) { - WGT_TYPE = -debug -} - -wgt.target = package -wgt.commands = wgtpkg-pack -f -o messaging$${WGT_TYPE}.wgt root - -QMAKE_EXTRA_TARGETS += wgt +#INSTALLS += desktop icon +INSTALLS += desktop |