45 lines
1.4 KiB
Text
45 lines
1.4 KiB
Text
# Template file for 'openssl'
|
|
pkgname=openssl
|
|
_openssl_version=1.0.0
|
|
version=${_openssl_version}e
|
|
homepage="http://www.openssl.org/"
|
|
distfiles="${homepage}/source/$pkgname-$version.tar.gz"
|
|
revision=1
|
|
short_desc="Secure Socket Layer and cryptographic library - runtime utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="BSD"
|
|
checksum=e361dc2775733fb84de7b5bf7b504778b772869e8f7bfac0b28b935cbf7380f7
|
|
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."
|
|
|
|
disable_parallel_build=yes
|
|
|
|
conf_files="/etc/ssl/openssl.cnf"
|
|
subpackages="libssl openssl-devel"
|
|
|
|
Add_dependency full perl ">=0"
|
|
Add_dependency build zlib-devel
|
|
|
|
do_build()
|
|
{
|
|
./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
|
|
zlib shared threads -Wa,--noexecstack
|
|
|
|
make ${makejobs}
|
|
}
|
|
|
|
do_install()
|
|
{
|
|
make INSTALL_PREFIX=${DESTDIR} MANDIR=/usr/share/man install
|
|
|
|
chmod 755 ${DESTDIR}/usr/lib/engines/*.so
|
|
for _solib_ in libssl.so libcrypto.so; do
|
|
chmod 755 ${DESTDIR}/usr/lib/${_solib_}.${_openssl_version}
|
|
cd ${DESTDIR}/usr/lib && \
|
|
ln -sf ${_solib_}.${_openssl_version} ${_solib_}.1 && \
|
|
ln -sf ${_solib_}.${_openssl_version} ${_solib_}
|
|
done
|
|
}
|