diff options
author | Francesco <fcolista@cf1844j.(none)> | 2011-02-03 13:52:05 +0100 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2011-02-25 09:50:42 +0000 |
commit | 0981f3ad44e885fa2cc81c597460ed201c948abe (patch) | |
tree | a3631d93741af3732232f0fe4d9a7b2f3dcb02eb /testing/perl-time-parsedate | |
parent | b04699fa8cf6b8d10f88b2109bbcb3c595d2b1bf (diff) | |
download | aports-0981f3ad44e885fa2cc81c597460ed201c948abe.tar.bz2 aports-0981f3ad44e885fa2cc81c597460ed201c948abe.tar.xz |
testing/perl-astro-suntime: new aport
testing/perl-device-serialport: new aport
testing/perl-time-parsedate: new aport
testing/perl-x10: new aport
Diffstat (limited to 'testing/perl-time-parsedate')
-rw-r--r-- | testing/perl-time-parsedate/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/perl-time-parsedate/APKBUILD b/testing/perl-time-parsedate/APKBUILD new file mode 100644 index 000000000..f7a0af33c --- /dev/null +++ b/testing/perl-time-parsedate/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-time-parsedate +_realname=Time-modules +pkgver=2006.0814 +pkgrel=0 +pkgdesc="Timezone perl module" +url="http://search.cpan.org/dist/Astro-SunTime/" +arch="noarch" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/M/MU/MUIR/modules/$_realname-$pkgver.tar.gz" + +_builddir="$srcdir/$_realname-$pkgver" + +build() { + cd $_builddir + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make || return 1 +} + +package() { + cd $_builddir + make DESTDIR="$pkgdir" install + # creates file collision among perl modules + find "$pkgdir" -name perllocal.pod -delete + +} + +md5sums="790c6739f601b85654fac9ee516b18d8 Time-modules-2006.0814.tar.gz" |