diff options
Diffstat (limited to 'testing/perl-astro-suntime/APKBUILD')
-rw-r--r-- | testing/perl-astro-suntime/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/perl-astro-suntime/APKBUILD b/testing/perl-astro-suntime/APKBUILD new file mode 100644 index 000000000..501925e4f --- /dev/null +++ b/testing/perl-astro-suntime/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-astro-suntime +_realname=Astro-SunTime +pkgver=0.01 +pkgrel=0 +pkgdesc="Provides a function interface to calculate sun rise/set times." +url="http://search.cpan.org/dist/Astro-SunTime/" +arch="noarch" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev perl-time-parsedate" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/R/RO/ROBF/$_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="4657927a49604494bfaaa153663b90b9 Astro-SunTime-0.01.tar.gz" |