libandroid-support: Fix indentation
This commit is contained in:
parent
a599e41a78
commit
b27e6fed1f
@ -1,6 +1,5 @@
|
||||
TERMUX_PKG_HOMEPAGE=https://developer.android.com/tools/sdk/ndk/index.html
|
||||
TERMUX_PKG_DESCRIPTION="Library extending the Android C library (Bionic) for additional multibyte, locale and math support"
|
||||
# Increase last digit each time a patch changes.
|
||||
TERMUX_PKG_VERSION=${TERMUX_NDK_VERSION}
|
||||
TERMUX_PKG_BUILD_IN_SRC=yes
|
||||
TERMUX_PKG_ESSENTIAL=yes
|
||||
@ -22,19 +21,19 @@ termux_step_post_extract_package () {
|
||||
termux_step_make_install () {
|
||||
_C_FILES="src/musl-*/*.c"
|
||||
# Link against libm to avoid linkers having to do it
|
||||
$CC $CFLAGS -std=c99 -DNULL=0 $CPPFLAGS $LDFLAGS -lm \
|
||||
-Iinclude -Isrc/locale \
|
||||
$CC $CFLAGS -std=c99 -DNULL=0 $CPPFLAGS $LDFLAGS -lm \
|
||||
-Iinclude -Isrc/locale \
|
||||
$_C_FILES \
|
||||
-shared -fpic \
|
||||
-o libandroid-support.so
|
||||
-shared -fpic \
|
||||
-o libandroid-support.so
|
||||
|
||||
cp libandroid-support.so $TERMUX_PREFIX/lib/
|
||||
cp libandroid-support.so $TERMUX_PREFIX/lib/
|
||||
|
||||
(cd $TERMUX_PREFIX/lib; ln -f -s libandroid-support.so libiconv.so; ln -f -s libandroid-support.so libintl.so)
|
||||
(cd $TERMUX_PREFIX/lib; ln -f -s libandroid-support.so libiconv.so; ln -f -s libandroid-support.so libintl.so)
|
||||
|
||||
rm -Rf $TERMUX_PREFIX/include/libandroid-support
|
||||
mkdir -p $TERMUX_PREFIX/include/libandroid-support
|
||||
cp -Rf include/* $TERMUX_PREFIX/include/libandroid-support/
|
||||
|
||||
(cd $TERMUX_PREFIX/include; ln -f -s libandroid-support/libintl.h libintl.h; ln -f -s libandroid-support/iconv.h iconv.h)
|
||||
(cd $TERMUX_PREFIX/include; ln -f -s libandroid-support/libintl.h libintl.h; ln -f -s libandroid-support/iconv.h iconv.h)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user