build_for_mac.sh 491 Bytes
Newer Older
xiongziliang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/bin/bash
path=`pwd`
wget https://raw.githubusercontent.com/xiongziliang/ZLToolKit/master/build_for_mac.sh -O toolkit_build.sh
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
15 16
mkdir -p mac_build
cd mac_build
xiongziliang committed
17 18 19
cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2j/
make -j4
sudo make install