p5-yaml-tiny: initial commit, v1.73

This commit is contained in:
Alexandr Savca 2020-11-22 12:45:55 +02:00
parent e7e8fc57ec
commit c6bb9019a5
3 changed files with 43 additions and 0 deletions

11
p5-yaml-tiny/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/perl5/
drwxr-xr-x root/root usr/lib/perl5/site_perl/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/
drwxr-xr-x root/root usr/lib/perl5/site_perl/5.28/YAML/
-r--r--r-- root/root usr/lib/perl5/site_perl/5.28/YAML/Tiny.pm
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man3/
-r--r--r-- root/root usr/share/man/man3/YAML::Tiny.3pm.gz

5
p5-yaml-tiny/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF30oYQUi7uEYi0fooYJa9xDku4bufzyQN/jqmac+QHbKVydJXkMErcuF7ignF0bqujsCiy32Q+1oO/ci5cwEaFgs=
SHA256 (Pkgfile) = b023f0bd389982bd4025ef071f3870045e80f80f29bc9e1ff17bdb3cb2cd137e
SHA256 (.footprint) = d82007dcf7950a7b5f69db62c3513452961db9c80af502e0a98236806d3a3a8b
SHA256 (YAML-Tiny-1.73.tar.gz) = bc315fa12e8f1e3ee5e2f430d90b708a5dc7e47c867dba8dce3a6b8fbe257744

27
p5-yaml-tiny/Pkgfile Normal file
View File

@ -0,0 +1,27 @@
# Description: Read/Write YAML files with as little code as possible
# URL: https://metacpan.org/pod/YAML::Tiny
# Maintainer: Alexandr Savca, alexandrsavca89 at gmail dot com
name=p5-yaml-tiny
version=1.73
release=1
source=(https://cpan.metacpan.org/authors/id/E/ET/ETHER/YAML-Tiny-$version.tar.gz)
build() {
cd YAML-Tiny-$version
perl Makefile.PL
make
make install DESTDIR=$PKG
# remove perlcrap
find $PKG -name perllocal.pod \
-o -name "*.bs" \
-o -name .packlist \
-o -name autosplit.ix \
| xargs rm -f
# remove empty dirs
find $PKG -depth -type d -empty -delete
}