mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
31 lines
975 B
Bash
31 lines
975 B
Bash
|
# $Id: PKGBUILD 52197 2009-09-16 14:12:25Z francois $
|
||
|
# Maintainer: Kevin Piche <kevin@archlinux.org>
|
||
|
# Contributor: Manolis Tzanidakis
|
||
|
# Contributor: Francois Charette <francois.archlinux.org>
|
||
|
|
||
|
pkgname=perl-io-socket-ssl
|
||
|
_cpanname=IO-Socket-SSL
|
||
|
pkgver=1.30
|
||
|
pkgrel=1
|
||
|
pkgdesc="Nearly transparent SSL encapsulation for IO::Socket::INET"
|
||
|
arch=(any)
|
||
|
license=('GPL' 'PerlArtistic')
|
||
|
url="http://search.cpan.org/dist/${_cpanname}/"
|
||
|
depends=('perl-net-ssleay' 'perl>=5.10.0')
|
||
|
options=(!emptydirs)
|
||
|
source=(http://www.cpan.org/authors/id/S/SU/SULLR/${_cpanname}-${pkgver}.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${_cpanname}-${pkgver}
|
||
|
# install module in vendor directories.
|
||
|
perl Makefile.PL INSTALLDIRS=vendor || return 1
|
||
|
make || return 1
|
||
|
make install DESTDIR=${pkgdir} || return 1
|
||
|
|
||
|
# remove perllocal.pod and .packlist
|
||
|
find ${pkgdir} -name perllocal.pod -delete
|
||
|
find ${pkgdir} -name .packlist -delete
|
||
|
}
|
||
|
# vim: ts=2 sw=2 et ft=sh
|
||
|
md5sums=('374f74487ef6fedc9326e20ac1e20dc0')
|