blob: 4d4140c67f31b2d946c7e8aa8e92d1c01084ba5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/mkpkg
# description: YAML 1.2 Processor
# url: https://metacpan.org/dist/YAML-PP
name=p5-yaml-pp
version=v0.41.0
release=1
depends=(perl)
source=(https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-PP-$version.tar.gz)
renames=(YAML-PP-$version.tar.gz)
sha256sums=(
"3ddfb2bdd2e7ef2d949dbd8ffb51439164c84d22bff615e47dbd8ea48ba75cae"
)
build() {
cd YAML-PP-$version
perl Makefile.PL
make
make DESTDIR=$PKG install
find $PKG -name perllocal.pod -delete
find $PKG -name .packlist -delete
find $PKG -name '*.bs' -empty -delete
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|