Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.sh « win - github.com/nextcloud/client_theming.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2949ec96b728de4fa0985bc526dab92bc456e04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

useradd user -u ${1:-1000}
su - user << EOF
  cd /home/user/
  rm -rf build-win32
  mkdir build-win32
  cd build-win32
  ../client/admin/win/download_runtimes.sh
  cmake -DCMAKE_TOOLCHAIN_FILE=../client/admin/win/Toolchain-mingw32-openSUSE.cmake\
  -DWITH_CRASHREPORTER=ON \
  -DOEM_THEME_DIR=/home/user/nextcloudtheme \
  -DMIRALL_VERSION_SUFFIX=beta \
  -DMIRALL_VERSION_BUILD=1 \
  ../client
  make -j4
  make package
  ctest .
EOF