# $Id: PKGBUILD 214230 2014-06-04 13:51:51Z bluewind $ # Maintainer: Giovanni Scafora # Contributor: Manolis Tzanidakis pkgname=perl-net-ssleay _cpanname=Net-SSLeay pkgver=1.63 pkgrel=2 pkgdesc="Perl extension for using OpenSSL" arch=('i686' 'x86_64') license=('custom:BSD') url="http://search.cpan.org/dist/${_cpanname}/" depends=('openssl') options=(!emptydirs) replaces=('net-ssleay') provides=('net-ssleay') source=("http://www.cpan.org/authors/id/M/MI/MIKEM/${_cpanname}-${pkgver}.tar.gz") md5sums=('9b95548e1ed415f8aeed0e004fa68226') prepare() { cd ${srcdir}/${_cpanname}-${pkgver} sed -i \ -e "/\$opts->{optimize} = '-O2 -g';/d" \ inc/Module/Install/PRIVATE/Net/SSLeay.pm } build() { cd ${srcdir}/${_cpanname}-${pkgver} export OPTIMIZE="$CFLAGS" export OPENSSL_PREFIX=/usr # install module in vendor directories. PERL_MM_USE_DEFAULT=1 perl Makefile.PL -- INSTALLDIRS=vendor make } package() { cd ${srcdir}/${_cpanname}-${pkgver} make install DESTDIR=${pkgdir} install -D -m644 README "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }