diff options
Diffstat (limited to 'main/perl-datetime-format-mail')
-rw-r--r-- | main/perl-datetime-format-mail/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/main/perl-datetime-format-mail/APKBUILD b/main/perl-datetime-format-mail/APKBUILD new file mode 100644 index 0000000000..f5c3edef0b --- /dev/null +++ b/main/perl-datetime-format-mail/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-datetime-format-mail +pkgver=0.3001 +pkgrel=0 +pkgdesc="DateTime::Format::Mail perl module" +url="http://search.cpan.org/dist/DateTime-Format-Mail/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl perl-datetime perl-params-validate" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-Format-Mail-$pkgver.tar.gz" + +_builddir="$srcdir"/DateTime-Format-Mail-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make && make test || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="15e36249e866463bd0237262a8e43b16 DateTime-Format-Mail-0.3001.tar.gz" |