mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:47:14 +08:00
34 lines
828 B
Bash
34 lines
828 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
pkgname=perl-digest-hmac
|
|
_realname=Digest-HMAC
|
|
pkgver=1.03
|
|
pkgrel=1
|
|
pkgdesc="Perl Module: Keyed-Hashing for Message Authentication."
|
|
arch=('any')
|
|
license=('PerlArtistic')
|
|
url="http://search.cpan.org/dist/${_realname}/"
|
|
depends=('perl-digest-sha1' 'perl>=5.10.0')
|
|
options=(!emptydirs)
|
|
replaces=('digest-hmac')
|
|
provides=('digest-hmac')
|
|
source=(http://www.cpan.org/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz)
|
|
md5sums=('e6a5d6f552da16eacb5157ea4369ff9d')
|
|
|
|
build() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
# install module in vendor directories.
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
make install DESTDIR=${pkgdir}
|
|
}
|