PKGBUILDs/core/openssl/PKGBUILD

81 lines
2.3 KiB
Bash
Raw Normal View History

2012-01-07 03:10:59 +00:00
# $Id$
2011-09-08 16:09:54 +00:00
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
2012-01-07 01:06:27 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2012-01-07 03:10:59 +00:00
# - use linux-armv4 target for our architectures
2011-09-08 16:09:54 +00:00
2012-01-07 01:06:27 +00:00
plugrel=1
2011-09-08 16:09:54 +00:00
pkgname=openssl
2012-03-22 05:46:12 +00:00
_ver=1.0.1
2011-09-08 16:09:54 +00:00
# use a pacman compatible version scheme
2012-03-22 05:46:12 +00:00
#pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}}
pkgver=$_ver
2012-04-01 16:43:38 +00:00
pkgrel=2
2011-09-08 16:09:54 +00:00
pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer Security'
arch=('i686' 'x86_64')
url='https://www.openssl.org'
license=('custom:BSD')
depends=('perl')
optdepends=('ca-certificates')
options=('!makeflags')
backup=('etc/ssl/openssl.cnf')
source=("https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz"
2012-01-07 03:10:59 +00:00
"https://www.openssl.org/source/${pkgname}-${_ver}.tar.gz.asc"
2011-09-08 16:09:54 +00:00
'fix-manpages.patch'
'no-rpath.patch'
2012-04-01 16:43:38 +00:00
'ca-dir.patch'
'disable-tls12-client.patch')
2012-03-22 05:46:12 +00:00
md5sums=('134f168bc2a8333f19f81d684841710b'
'efbe93c11747fed52e60567819409d8a'
2011-09-08 16:09:54 +00:00
'5bbc0655bda2af95bc8eb568963ce8ba'
'dc78d3d06baffc16217519242ce92478'
2012-04-01 16:43:38 +00:00
'3bf51be3a1bbd262be46dc619f92aa90'
'26432b9d7af63c63828b6405c9185400')
2011-09-08 16:09:54 +00:00
build() {
cd $srcdir/$pkgname-$_ver
2012-01-07 03:10:59 +00:00
if [ "${CARCH}" == 'x86_64' ]; then
openssltarget='linux-x86_64'
elif [ "${CARCH}" == 'i686' ]; then
openssltarget='linux-elf'
elif [ "${CARCH}" == 'arm' -o "${CARCH}" == 'armv7h' ]; then
openssltarget='linux-armv4'
fi
2011-09-08 16:09:54 +00:00
# avoid conflicts with other man pages
# see http://www.linuxfromscratch.org/patches/downloads/openssl/
patch -p1 -i $srcdir/fix-manpages.patch
# remove rpath: http://bugs.archlinux.org/task/14367
patch -p0 -i $srcdir/no-rpath.patch
# set ca dir to /etc/ssl by default
patch -p0 -i $srcdir/ca-dir.patch
2012-04-01 16:43:38 +00:00
# workaround for PR#2771
patch -p1 -i $srcdir/disable-tls12-client.patch
2011-09-08 16:09:54 +00:00
# mark stack as non-executable: http://bugs.archlinux.org/task/12434
2012-01-07 03:10:59 +00:00
./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \
shared zlib enable-md2 \
2012-01-07 03:10:59 +00:00
"${openssltarget}" \
2012-04-01 16:43:38 +00:00
-Wa,--noexecstack "${CFLAGS}" \
-DOPENSSL_NO_TLS1_2_CLIENT
2011-09-08 16:09:54 +00:00
make depend
make
}
check() {
cd $srcdir/$pkgname-$_ver
# the test fails due to missing write permissions in /etc/ssl
# revert this patch for make test
patch -p0 -R -i $srcdir/ca-dir.patch
make test
patch -p0 -i $srcdir/ca-dir.patch
}
package() {
cd $srcdir/$pkgname-$_ver
make INSTALL_PREFIX=$pkgdir MANDIR=/usr/share/man install
install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
}