mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
30 lines
962 B
Bash
30 lines
962 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=perl-io-socket-ssl
|
|
_cpanname=IO-Socket-SSL
|
|
pkgver=1.39
|
|
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)
|
|
md5sums=('776f36451970287c9b3c77e1d39dd7ed')
|
|
|
|
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
|
|
} |