mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
Add symlinks for suffixed dynamic libs
This commit is contained in:
parent
a8e4342be0
commit
cff4cb9332
2 changed files with 7 additions and 2 deletions
2
.SRCINFO
2
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
|||
pkgbase = android-x86-openssl
|
||||
pkgdesc = The Open Source toolkit for Secure Sockets Layer and Transport Layer Security (Android, x86)
|
||||
pkgver = 1.1.1.d
|
||||
pkgrel = 2
|
||||
pkgrel = 3
|
||||
url = https://www.openssl.org
|
||||
arch = any
|
||||
license = custom:BSD
|
||||
|
|
|
|||
7
PKGBUILD
7
PKGBUILD
|
|
@ -10,7 +10,7 @@ _ver=1.1.1d
|
|||
pkgname=android-$_pkg_arch-$_pkgname
|
||||
# use a pacman compatible version scheme
|
||||
pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
|
||||
pkgrel=2
|
||||
pkgrel=3
|
||||
pkgdesc="The Open Source toolkit for Secure Sockets Layer and Transport Layer Security (Android, $_pkg_arch)"
|
||||
arch=('any')
|
||||
url='https://www.openssl.org'
|
||||
|
|
@ -72,6 +72,11 @@ package() {
|
|||
cp -r include/openssl "$pkgdir/${ANDROID_PREFIX_INCLUDE}"
|
||||
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||||
|
||||
# add symlinks for dynamic libs with SHLIB_EXT so build scripts can find them under their usual names
|
||||
for lib in libcrypto libssl; do
|
||||
ln -s "${lib}_1_1.so" "${pkgdir}/${ANDROID_PREFIX_LIB}/${lib}.so"
|
||||
done
|
||||
|
||||
# strip binaries
|
||||
find "$pkgdir" -name 'lib*.so' -type f -exec "$ANDROID_STRIP" --strip-unneeded {} \;
|
||||
find "$pkgdir" -name 'lib*.a' -type f -exec "$ANDROID_STRIP" -g {} \;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue