diff options
-rw-r--r-- | testing/perl-astro-suntime/APKBUILD | 33 | ||||
-rw-r--r-- | testing/perl-device-serialport/APKBUILD | 33 | ||||
-rw-r--r-- | testing/perl-time-parsedate/APKBUILD | 33 |
3 files changed, 99 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" diff --git a/testing/perl-device-serialport/APKBUILD b/testing/perl-device-serialport/APKBUILD new file mode 100644 index 000000000..a49e36da6 --- /dev/null +++ b/testing/perl-device-serialport/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-device-serialport +_realname=Device-SerialPort +pkgver=1.04 +pkgrel=0 +pkgdesc="Linux/POSIX emulation of Win32::SerialPort functions." +url="http://search.cpan.org/~cook/" +arch="x86 x86_64" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/C/CO/COOK/$_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="82c698151f934eb28c65d1838cee7d9e Device-SerialPort-1.04.tar.gz" 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" |