summaryrefslogtreecommitdiff
path: root/perl/p5-file-next/MAKEPKG
blob: 82548bef044ba8ca2847d6723e475ebc5f9c4ea1 (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: File-finding iterator
# url: https://metacpan.org/dist/File-Next

name=p5-file-next
version=1.18
release=1
depends=(perl)
source=(https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/File-Next-$version.tar.gz)
renames=(File-Next-$version.tar.gz)

sha256sums=(
    "f900cb39505eb6e168a9ca51a10b73f1bbde1914b923a09ecd72d9c02e6ec2ef"
)

build() {
    cd File-Next-$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