22 lines
623 B
Plaintext
22 lines
623 B
Plaintext
|
##############################
|
||
|
# Prerequirements:
|
||
|
# - Setup your environment variable inside the shell, e.g. ~/.bashrc
|
||
|
# export BUILD_LOCAL_CFG=/home/dschwager/work/build_local.cfg
|
||
|
# check the sample build_local.cfg located inside the itwatch project
|
||
|
##############################
|
||
|
|
||
|
# requirements
|
||
|
yum install plowshare
|
||
|
yum install ImageMagick
|
||
|
yum install git
|
||
|
|
||
|
# define your local, private, individual, not-project dependent build setup
|
||
|
export BUILD_LOCAL_CFG=/home/dschwager/work/itwatch/build_local.cfg
|
||
|
|
||
|
# Start build
|
||
|
./build.sh
|
||
|
|
||
|
# Force downloading vendor files
|
||
|
DIST_FORCE_DOWNLOAD=1 ./build.sh
|
||
|
|