diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 13:49:11 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 13:49:11 +0100 |
commit | e4f88bd591c301be52d40c44b2884df60418c1e2 (patch) | |
tree | eff2a4749ac3ca6855656b88d7c7e1550f8518ef | |
parent | dc72c3c2bfb56a65d3cc30bfe3003b0293b33be5 (diff) | |
parent | c62643a7e6bb1f553bfc2ef96c4ca0a7fbd4ff14 (diff) | |
download | ayatana-indicator-keyboard-e4f88bd591c301be52d40c44b2884df60418c1e2.tar.gz ayatana-indicator-keyboard-e4f88bd591c301be52d40c44b2884df60418c1e2.tar.bz2 ayatana-indicator-keyboard-e4f88bd591c301be52d40c44b2884df60418c1e2.zip |
Merge branch 'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
Attributes GH PR #24: https://github.com/AyatanaIndicators/ayatana-indicator-keyboard/pull/24
-rw-r--r-- | .build.yml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -33,6 +33,8 @@ requires: - libxklavier-dev - systemd # - libayatana-common-dev +# For building libayatana-common: + - liblomiri-url-dispatcher-dev ubuntu: - clang @@ -72,7 +74,11 @@ before_scripts: - git clone --depth 1 https://github.com/AyatanaIndicators/libayatana-common.git libayatana-common-build - fi - cd libayatana-common-build - - cmake . -DCMAKE_INSTALL_PREFIX=/usr + - if [ ${DISTRO_NAME} == "debian" ]; then + - cmake . -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_LOMIRI_FEATURES=ON + - else + - cmake . -DCMAKE_INSTALL_PREFIX=/usr + - fi - make - make install - cd - |