Skip to content

Commit

Permalink
fix indentation in build mac script
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandlo committed Feb 3, 2022
1 parent 524f8a9 commit 9f66a83
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions azure-pipelines/steps/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ steps:
unzip ninja-mac.zip -d "${{parameters.generation_path}}"/gtk/inst/bin
displayName: 'Get Ninja'
- bash: |
# Lua 5.4 is only supported with cmake >= 3.18, so use Lua 5.3 instead
cd "${{parameters.generation_path}}"
curl -R -O http://www.lua.org/ftp/lua-5.3.6.tar.gz
tar zxf lua-5.3.6.tar.gz
cd lua-5.3.6
make macosx all
make install INSTALL_TOP="${{parameters.generation_path}}"/gtk/inst
# Lua 5.4 is only supported with cmake >= 3.18, so use Lua 5.3 instead
cd "${{parameters.generation_path}}"
curl -R -O https://www.lua.org/ftp/lua-5.3.6.tar.gz
tar zxf lua-5.3.6.tar.gz
cd lua-5.3.6
make macosx all
make install INSTALL_TOP="${{parameters.generation_path}}"/gtk/inst
displayName: 'Get Lua'
- bash: |
# Cppunit will not be required any longer after the migration to gtest (in version 1.2)
cd "${{parameters.generation_path}}"
curl -L -o cppunit.tar.gz https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz
tar zxf cppunit.tar.gz
cd cppunit-1.15.1
./configure --prefix="${{parameters.generation_path}}"/gtk/inst
make
make install
# Cppunit will not be required any longer after the migration to gtest (in version 1.2)
cd "${{parameters.generation_path}}"
curl -L -o cppunit.tar.gz https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz
tar zxf cppunit.tar.gz
cd cppunit-1.15.1
./configure --prefix="${{parameters.generation_path}}"/gtk/inst
make
make install
displayName: 'Get Cppunit'
- bash: |
export PKG_CONFIG_PATH="${{parameters.generation_path}}"/gtk/inst/lib/pkgconfig:"${{parameters.generation_path}}"/gtk/inst/share/pkgconfig:/Applications/Xcode.app/Contents/Developer/Library/Frameworks/Python3.framework/Versions/3.8/lib/pkgconfig
Expand Down

0 comments on commit 9f66a83

Please sign in to comment.