34 lines
928 B
Bash
34 lines
928 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
|
# Maintainer: Bruno Pagani <archange@archlinux.org>
|
|
|
|
_pkg=Type-Tiny
|
|
pkgname=perl-${_pkg,,}
|
|
pkgver=2.006000
|
|
pkgrel=1
|
|
pkgdesc="Tiny, yet Moo(se)-compatible type constraint"
|
|
arch=(any)
|
|
url="https://metacpan.org/release/${_pkg}"
|
|
license=(PerlArtistic GPL)
|
|
options=(!emptydirs)
|
|
depends=(perl perl-exporter-tiny)
|
|
source=(https://cpan.metacpan.org/authors/id/T/TO/TOBYINK/${_pkg}-${pkgver}.tar.gz)
|
|
sha512sums=('24c3fea4834eb093b2aceff82e951bed73adf821d77c0f5445085021b8dc661cc3264198d265817349e582fc0e640303534a1d23ae1fcf669135ed7ab3ee937d')
|
|
|
|
build() {
|
|
cd ${_pkg}-${pkgver}
|
|
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
|
|
perl Makefile.PL
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ${_pkg}-${pkgver}
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd ${_pkg}-${pkgver}
|
|
make INSTALLDIRS=vendor DESTDIR="${pkgdir}" install
|
|
}
|