# $Id: PKGBUILD 205947 2014-02-14 13:56:11Z giovanni $ # Maintainer: Giovanni Scafora # Contributor: Manolis Tzanidakis pkgname=perl-net-ssleay _cpanname=Net-SSLeay pkgver=1.58 pkgrel=1 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=('fdd09b065e46aa3482f80d7ed7044e38') 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" }