mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-06 19:03:24 +00:00
- Context: similar to https://github.com/termux/termux-packages/pull/24956. This is needed as a deeply-nested dependency of a potential improved Blender package.
- Enable manpages
- New files provided after this change:
```diff
/data/data/com.termux/files/usr/lib/pkgconfig/libwebpdemux.pc
/data/data/com.termux/files/usr/lib/pkgconfig/libwebpmux.pc
/data/data/com.termux/files/usr/share
+/data/data/com.termux/files/usr/share/WebP
+/data/data/com.termux/files/usr/share/WebP/cmake
+/data/data/com.termux/files/usr/share/WebP/cmake/WebPConfig.cmake
+/data/data/com.termux/files/usr/share/WebP/cmake/WebPConfigVersion.cmake
+/data/data/com.termux/files/usr/share/WebP/cmake/WebPTargets-release.cmake
+/data/data/com.termux/files/usr/share/WebP/cmake/WebPTargets.cmake
/data/data/com.termux/files/usr/share/doc
/data/data/com.termux/files/usr/share/doc/libwebp
/data/data/com.termux/files/usr/share/doc/libwebp/copyright
+/data/data/com.termux/files/usr/share/man
+/data/data/com.termux/files/usr/share/man/man1
+/data/data/com.termux/files/usr/share/man/man1/cwebp.1.gz
+/data/data/com.termux/files/usr/share/man/man1/dwebp.1.gz
+/data/data/com.termux/files/usr/share/man/man1/gif2webp.1.gz
+/data/data/com.termux/files/usr/share/man/man1/img2webp.1.gz
+/data/data/com.termux/files/usr/share/man/man1/webpinfo.1.gz
+/data/data/com.termux/files/usr/share/man/man1/webpmux.1.gz
```
- Compare Arch Linux: 8aad1cd0f1/PKGBUILD
18 lines
704 B
Diff
18 lines
704 B
Diff
libcpufeatures in only used in libwebp for NEON,
|
|
and all Termux's supported ARM devices support NEON
|
|
(Android 5.0+ requires NEON: https://developer.android.com/ndk/guides/cpu-arm-neon)
|
|
and the NEON support is already successfully detected at configure-time separately from this:
|
|
-- Performing Test WEBP_HAVE_FLAG_NEON - Success
|
|
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -181,7 +181,7 @@ endif()
|
|
|
|
# ##############################################################################
|
|
# Android only.
|
|
-if(ANDROID)
|
|
+if(FALSE)
|
|
include_directories(${ANDROID_NDK}/sources/android/cpufeatures)
|
|
add_library(cpufeatures-webp STATIC
|
|
${ANDROID_NDK}/sources/android/cpufeatures/cpu-features.c)
|