2025-08-09 22:17:27 +02:00

41 lines
972 B
Bash

# Maintainer: atom2013 <atom.long@hotmail.com>
_perlmod='Font-TTF'
_modnamespace='Font'
pkgname="perl-${_perlmod}"
pkgver=1.06
pkgrel=2
pkgdesc="${_perlmod//-/::} - Perl module for TrueType font hacking"
arch=(any)
url="https://metacpan.org/dist/Font-TTF"
msys2_references=(
"purl: pkg:cpan/BHALLISSY/Font-TTF"
)
license=('Artistic2.0')
groups=('perl-modules')
depends=(perl-IO-String)
options=(!emptydirs)
_verwatch=("https://www.cpan.org/modules/by-module/${_modnamespace}/" "${_perlmod}-\([0-9\.]*\)\.tar\.gz" 'l')
source=("${_verwatch[0]}${_perlmod}-${pkgver}.tar.gz")
sha256sums=('4b697d444259759ea02d2c442c9bffe5ffe14c9214084a01f743693a944cc293')
build() {
cd "${_perlmod}-${pkgver}"
# Install module in vendor directories.
PERL_MM_USE_DEFAULT=1 perl 'Makefile.PL' INSTALLDIRS='vendor'
make
}
check() {
cd "${_perlmod}-${pkgver}"
make test
}
package() {
cd "${_perlmod}-${pkgver}"
make install DESTDIR="${pkgdir}"
rm -r "$pkgdir"/usr/lib
}