mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
1,018 B
Bash
23 lines
1,018 B
Bash
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
|
|
|
pkgname=perl-datetime-format-ical
|
|
pkgver=0.09
|
|
pkgrel=1
|
|
pkgdesc="Perl/CPAN Module DateTime::Format::ICal"
|
|
arch=("i686" "x86_64")
|
|
url="http://search.cpan.org/dist/DateTime-Format-ICal"
|
|
license=("GPL" "Artistic")
|
|
makedepends=("perl-datetime-timezone" "perl-datetime-event-ical" "perl-datetime" "perl-params-validate" "perl-datetime-set")
|
|
depends=("perl-datetime-timezone" "perl-datetime-event-ical" "perl-datetime" "perl-params-validate" "perl-datetime-set")
|
|
source=("http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/DateTime-Format-ICal-$pkgver.tar.gz")
|
|
|
|
build() {
|
|
cd $startdir/src/DateTime-Format-ICal-$pkgver
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make install DESTDIR=$startdir/pkg || return 1
|
|
find $startdir/pkg -name '.packlist' -delete
|
|
find $startdir/pkg -name '*.pod' -delete
|
|
}
|
|
md5sums=('17bb64bfb515f2db365ba5bb5a68a143')
|