Search Criteria
Package Details: perl-dbm-deep 2.0016-1
Git Clone URL: | https://aur.archlinux.org/perl-dbm-deep.git (read-only, click to copy) |
---|---|
Package Base: | perl-dbm-deep |
Description: | A pure Perl multi-level hash/array DBM that supports transactions |
Upstream URL: | https://metacpan.org/release/DBM-Deep |
Licenses: | |
Submitter: | bunder |
Maintainer: | bunder |
Last Packager: | bunder |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2011-07-03 18:43 |
Last Updated: | 2020-03-09 14:45 |
Dependencies (5)
- perl (perl-git)
- perl-test-deep (check)
- perl-test-exception (check)
- perl-test-warn (check)
- perl-module-build>=0.42 (make)
Latest Comments
bunder commented on 2013-08-04 09:27
Fixed. Thanks!
Anonymous comment on 2013-06-27 01:28
Got an error making it.
Here's the fixed PKGBUILD
pkgname=perl-dbm-deep
pkgver=2.0008
pkgrel=2
pkgdesc="A pure Perl multi-level hash/array DBM that supports transactions including Deep.pod patch"
arch=("any")
url="http://search.cpan.org/dist/DBM-Deep"
license=("PerlArtistic" "GPL")
depends=("perl")
cheackdepends=("perl-test-deep" "perl-test-warn" "perl-test-exception")
source=(http://search.cpan.org/CPAN/authors/id/S/SP/SPROUT/DBM-Deep-2.0008.tar.gz)
options=(!emptydirs)
md5sums=("033064a43a8a189bf86781d398d1a88b")
build() {
cd "$srcdir/DBM-Deep-2.0008"
curl -O https://rt.cpan.org/Public/Ticket/Attachment/1216944/642637/pod.patch
patch -p1 < pod.patch
PERL_MM_USE_DEFAULT=1 perl Build.PL --installdirs vendor --destdir "$pkgdir"
perl Build
}
check() {
cd "$srcdir/DBM-Deep-2.0008"
perl Build test
}
package() {
cd "$srcdir/DBM-Deep-2.0008"
perl Build install
find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
find "$pkgdir" -name pod.patch -delete
}