42 lines
1.5 KiB
Text
42 lines
1.5 KiB
Text
# Template file for 'openssl'
|
|
pkgname=openssl
|
|
_openssl_version=1.0.0
|
|
version=${_openssl_version}b
|
|
distfiles="http://www.openssl.org/source/$pkgname-$version.tar.gz"
|
|
build_style=configure
|
|
configure_script="./config"
|
|
configure_args="--prefix=/usr --openssldir=/etc/ssl --libdir=lib
|
|
zlib shared threads -Wa,--noexecstack"
|
|
make_install_target="INSTALL_PREFIX=$XBPS_DESTDIR/$pkgname-$version
|
|
MANDIR=/usr/share/man install"
|
|
short_desc="Secure Socket Layer and cryptographic library - runtime utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=4e7b4e2fb33ee2d97c5e143561ab495dbbfc08f0a863e617a0c7adca19017331
|
|
long_desc="
|
|
The OpenSSL Project is a collaborative effort to develop a robust,
|
|
commercial-grade, full-featured, and Open Source toolkit implementing the
|
|
Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1)
|
|
protocols as well as a full-strength general purpose cryptography library."
|
|
|
|
# Does not build with -j.
|
|
disable_parallel_build=yes
|
|
conf_files="/etc/ssl/openssl.cnf"
|
|
subpackages="libssl openssl-devel"
|
|
|
|
Add_dependency run glibc
|
|
Add_dependency run zlib
|
|
Add_dependency run libssl
|
|
Add_dependency full perl ">=0"
|
|
Add_dependency build zlib-devel
|
|
|
|
post_install()
|
|
{
|
|
chmod 755 ${DESTDIR}/usr/lib/lib{ssl,crypto}.so.${_openssl_version}
|
|
chmod 755 ${DESTDIR}/usr/lib/engines/*.so
|
|
|
|
for _solib_ in libssl.so libcrypto.so; do
|
|
cd ${DESTDIR}/usr/lib && \
|
|
ln -sf ${_solib_}.${_openssl_version} ${_solib_}.1 && \
|
|
ln -sf ${_solib_}.${_openssl_version} ${_solib_}
|
|
done
|
|
}
|