From 50c41f2a0416d8715795b8dcd02fcdb235a11551 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 16 Oct 2018 23:43:33 +0200 Subject: [PATCH] Fix dependencies of android-openssl-arm64-v8a --- openssl/android-arm64-v8a/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openssl/android-arm64-v8a/PKGBUILD b/openssl/android-arm64-v8a/PKGBUILD index d5149927..d400e69f 100644 --- a/openssl/android-arm64-v8a/PKGBUILD +++ b/openssl/android-arm64-v8a/PKGBUILD @@ -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 {} \; }