diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-02 14:09:33 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-02 14:09:33 +0000 |
commit | 153c89da6709d7330a271be726104bbbdfcc9858 (patch) | |
tree | 3abb00fd5739b15d1f027144d1cc77bfaceb904d /main/perl-sys-mmap/APKBUILD | |
parent | 0d7c49b1e9decddf161bcb4e4c12ab46c0e794ec (diff) | |
download | aports-153c89da6709d7330a271be726104bbbdfcc9858.tar.bz2 aports-153c89da6709d7330a271be726104bbbdfcc9858.tar.xz |
main/perl-*: moved to main
most of the have test scripts
Diffstat (limited to 'main/perl-sys-mmap/APKBUILD')
-rw-r--r-- | main/perl-sys-mmap/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/main/perl-sys-mmap/APKBUILD b/main/perl-sys-mmap/APKBUILD new file mode 100644 index 0000000000..4c9f89099a --- /dev/null +++ b/main/perl-sys-mmap/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-sys-mmap +_realname=Sys-Mmap +pkgver=0.15 +pkgrel=1 +pkgdesc="Uses mmap to map in a file as a Perl variable" +url="http://search.cpan.org/~toddr/Sys-Mmap-0.14/" +arch="all" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/$_realname-$pkgver.tar.gz" + +_builddir="$srcdir/$_realname-$pkgver" +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 + # creates file collision among perl modules + find "$pkgdir" -name perllocal.pod -delete +} +md5sums="779453c3950a8370bae04aff1cfbaf90 Sys-Mmap-0.15.tar.gz" |