This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # This script fetches and builds libx264, libav, rtmpd and their dependencies. | |
| # you may have to add /usr/local/lib to /etc/ld.so.conf | |
| # BASEDIR = build directory (default current dir) | |
| # PREFIX = install directory (default /usr/local) | |
| if [ -z "$BASEDIR" ]; then | |
| BASEDIR=`pwd` | |
| fi |
NewerOlder