Created
July 9, 2015 10:56
-
-
Save LanderlYoung/63d4c59260bce20c4a0f to your computer and use it in GitHub Desktop.
This file contains 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 | |
#author [email protected] | |
#def | |
IJK_PROJECT_DIR=ijkplayer | |
SO_LIB_PATH=android/ijkmediaplayer/libs/armeabi-v7a | |
PROJECT_LIBS_DIR=../libs/armeabi | |
#enter android work directory | |
cd $IJK_PROJECT_DIR/android | |
#compile ffmpeg | |
./compile-ffmpeg.sh clean | |
./compile-ffmpeg.sh armv7a | |
#compile ijkplayer | |
./compile-ijk.sh | |
#switch cwd back | |
cd - | |
#copy so libs | |
for solib in $IJK_PROJECT_DIR/$SO_LIB_PATH/*.so;do | |
echo "Overringding `basename $solib`" | |
cp -f $solib $PROJECT_LIBS_DIR/ | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment