2017-05-11 22:55:29 +08:00
|
|
|
#!/bin/bash
|
2018-03-21 15:23:05 +08:00
|
|
|
cd ..
|
|
|
|
git clone --depth=1 https://github.com/xiongziliang/ZLMediaKit.git
|
|
|
|
cd ZLMediaKit
|
|
|
|
git submodule init
|
|
|
|
git submodule update
|
|
|
|
|
|
|
|
brew install cmake
|
|
|
|
brew install mysql
|
|
|
|
brew install openssl
|
2017-05-11 22:55:29 +08:00
|
|
|
brew install x264
|
|
|
|
brew install faac
|
|
|
|
brew install mp4v2
|
|
|
|
brew install sdl
|
|
|
|
brew install ffmpeg
|
2018-03-21 15:23:05 +08:00
|
|
|
|
2017-06-20 14:37:09 +08:00
|
|
|
mkdir -p mac_build
|
2017-10-13 15:19:24 +08:00
|
|
|
rm -rf ./build
|
|
|
|
ln -s ./mac_build build
|
2017-06-20 14:37:09 +08:00
|
|
|
cd mac_build
|
2017-05-11 22:55:29 +08:00
|
|
|
cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2j/
|
|
|
|
make -j4
|