2017-05-11 22:55:29 +08:00
|
|
|
#!/bin/bash
|
|
|
|
path=`pwd`
|
2018-02-23 15:36:51 +08:00
|
|
|
wget https://raw.githubusercontent.com/xiongziliang/ZLToolKit/develop/build_for_mac.sh -O toolkit_build.sh
|
2017-05-11 22:55:29 +08:00
|
|
|
sudo chmod +x ./toolkit_build.sh
|
|
|
|
./toolkit_build.sh
|
|
|
|
brew install x264
|
|
|
|
brew install faac
|
|
|
|
brew install mp4v2
|
|
|
|
brew install sdl
|
|
|
|
brew install ffmpeg
|
|
|
|
cd $path
|
|
|
|
cd ..
|
|
|
|
git clone --depth=50 https://github.com/xiongziliang/ZLMediaKit.git
|
|
|
|
cd ZLMediaKit
|
2018-02-23 17:06:56 +08:00
|
|
|
git fetch origin 2.0-alpha:2.0-alpha
|
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
|
|
|
|
sudo make install
|