name: ozwdaemon base: core20 version: '0.1' summary: Single-line elevator pitch for your amazing snap # 79 char long summary description: | This is my-snap's description. You have a paragraph or two to tell the most important story about your snap. Keep it under 100 words though, we live in tweetspace and your description wants to look good in the snap store. grade: devel confinement: strict layout: /usr/local/share/OpenZWave/qt-openzwavedatabase.rcc: bind-file: $SNAP/usr/share/qt5/qt-openzwavedatabase.rcc apps: ozwdaemon: # daemon: simple # restart-condition: on-failure command: usr/local/bin/ozwdaemon command-chain: - bin/env-wrapper plugs: - network - network-bind - raw-usb parts: open-zwave: plugin: make source: https://github.com/OpenZWave/open-zwave.git qtmqtt: after: [open-zwave] plugin: make # aka qmake source: https://github.com/qt/qtmqtt.git source-tag: 5.12.8 build-packages: - build-essential - qt5-default - qtbase5-private-dev override-build: | if [ -f "Makefile" ]; then echo "Clean $SNAPCRAFT_PART_BUILD" qmake -r make distclean fi qmake make -j$(nproc) make -j$(nproc) install make -j$(nproc) install INSTALL_ROOT="${SNAPCRAFT_PART_INSTALL}" override-prime: | snapcraftctl prime stage-packages: - libdouble-conversion3 - libfreetype6 - libgl1 - libglvnd0 - libglx0 - libgraphite2-3 - libharfbuzz0b - libicu66 - libpcre2-16-0 - libpng16-16 - libqt5core5a - libqt5gui5 - libqt5network5 - libqt5websockets5 - libqt5widgets5 - libx11-6 - libxau6 - libxcb1 - libxdmcp6 qt-openzwave: after: [open-zwave, qtmqtt] plugin: make # aka qmake? source: https://github.com/OpenZWave/qt-openzwave.git build-packages: - build-essential - qt5-default - libqt5websockets5-dev - libqt5remoteobjects5-dev - libqt5remoteobjects5-bin - gcc-8-base - libgcc-8-dev - cmake - pkgconf - libunwind-dev - libcurl4-openssl-dev - rapidjson-dev stage-packages: - libdouble-conversion3 - libicu66 - libpcre2-16-0 - libqt5core5a - libqt5network5 - libqt5remoteobjects5 - libqt5websockets5 - libunwind8 override-build: | if [ -f "Makefile" ]; then echo "Clean $SNAPCRAFT_PART_BUILD" qmake -r make distclean fi INSTALL_PATH="${HOME}" if [ ! -z ${container+x} ]; then INSTALL_PATH="/build/${SNAPCRAFT_PROJECT_NAME}" fi OZW_LIB_PATH="$(dirname $(find ${INSTALL_PATH}/parts/open-zwave/install -name libopenzwave.so -print0 -quit))" OZW_INCLUDE_PATH="$(dirname $(find ${INSTALL_PATH}/parts/open-zwave/install -name Manager.h -print0 -quit))" OZW_DATABASE_PATH="$(dirname $(find ${INSTALL_PATH}/parts/open-zwave/install -name manufacturer_specific.xml))" qmake -r "CONFIG+=release" \ OZW_LIB_PATH="${OZW_LIB_PATH}" \ OZW_INCLUDE_PATH="${OZW_INCLUDE_PATH}" \ OZW_DATABASE_PATH="${OZW_DATABASE_PATH}" make -j$(nproc) make -j$(nproc) install INSTALL_ROOT="${SNAPCRAFT_PART_INSTALL}" local-src: after: [qt-openzwave] plugin: dump source: ./src source-type: local # override-build: | # snapcraftctl build # echo $SNAPCRAFT_PROJECT_DIR organize: hooks: snap/hooks