Fix dependencies of android-openssl-arm64-v8a

This commit is contained in:
Martchus 2018-10-16 23:43:33 +02:00
parent 8fcb3a7914
commit 50c41f2a04
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ arch=('any')
url='https://www.openssl.org'
license=('custom:BSD')
options=('!strip' '!buildflags' 'staticlibs' '!emptydirs')
depends=('perl' 'android-sdk' 'android-ndk')
depends=('android-sdk' 'android-ndk')
source=("https://www.openssl.org/source/${_pkgname}-${_ver}.tar.gz"
"https://www.openssl.org/source/${_pkgname}-${_ver}.tar.gz.asc"
'setenv-android.sh')
@ -71,7 +71,7 @@ package() {
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
# strip binaries
local strip_path=$ANDROID_TOOLCHAIN/${CROSS_COMPILE}strip
local strip_path=$ANDROID_TOOLCHAIN/${CROSS_COMPILE}strip
find "$pkgdir" -name 'lib*.so' -type f -exec "$strip_path" --strip-unneeded {} \;
find "$pkgdir" -name 'lib*.a' -type f -exec "$strip_path" -g {} \;
}