diff options
author | Robert Tari <robert@tari.in> | 2021-12-06 11:11:03 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 14:46:17 +0100 |
commit | 0d84ced53c261f8ba1e8e29b6f5df2c55f8241b6 (patch) | |
tree | 63b87607a828aad3ac42bf3fc0c499ce6934dc42 | |
parent | 809fa0a181017604afc9a66fd7880a0f683a5e50 (diff) | |
download | ayatana-indicator-power-0d84ced53c261f8ba1e8e29b6f5df2c55f8241b6.tar.gz ayatana-indicator-power-0d84ced53c261f8ba1e8e29b6f5df2c55f8241b6.tar.bz2 ayatana-indicator-power-0d84ced53c261f8ba1e8e29b6f5df2c55f8241b6.zip |
.build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
-rw-r--r-- | .build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -114,7 +114,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 - |