-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
44 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ toolchain-* | |
libpng-* | ||
expat-* | ||
fribidi-* | ||
lame-* | ||
|
||
# Created by http://www.gitignore.io | ||
|
||
|
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
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
Submodule ffmpeg
updated
from d61454 to fda00a
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
Submodule fontconfig
updated
from 9260b7 to 1827ef
Submodule freetype2
updated
from ec8853 to 44accb
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
. abi_settings.sh $1 $2 $3 | ||
|
||
pushd fribidi-0.19.6 | ||
pushd fribidi-0.19.7 | ||
|
||
make clean | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
. abi_settings.sh $1 $2 $3 | ||
|
||
pushd lame-3.99.5 | ||
|
||
make clean | ||
|
||
case $1 in | ||
armeabi-v7a | armeabi-v7a-neon) | ||
HOST=arm-linux | ||
;; | ||
x86) | ||
HOST=i686-linux | ||
;; | ||
esac | ||
|
||
./configure \ | ||
--with-pic \ | ||
--with-sysroot="$NDK_SYSROOT" \ | ||
--host="$HOST" \ | ||
--enable-static \ | ||
--disable-shared \ | ||
--prefix="${TOOLCHAIN_PREFIX}" \ | ||
--enable-arm-neon="$ARM_NEON" \ | ||
--disable-shared || exit 1 | ||
|
||
make -j${NUMBER_OF_CORES} install || exit 1 | ||
|
||
popd |
Submodule libass
updated
56 files
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
. abi_settings.sh $1 $2 $3 | ||
|
||
pushd libpng-1.6.13 | ||
pushd libpng-1.6.21 | ||
|
||
make clean | ||
|
||
|
Submodule x264
updated
from 021c0d to 5c6570