diff options
author | Francesco Colista <francesco.colista@gmail.com> | 2011-02-01 22:12:09 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@gmail.com> | 2011-02-25 09:50:42 +0000 |
commit | a4ae9b923f8d3e42ed749482fc8d3fa7c25ec247 (patch) | |
tree | 90fdb0542f47f47bc86ae124a40fb7fc6cabba3b | |
parent | 8159f3f0ed548eccb5ca5199b46b77fc67e0d4c7 (diff) | |
download | aports-a4ae9b923f8d3e42ed749482fc8d3fa7c25ec247.tar.bz2 aports-a4ae9b923f8d3e42ed749482fc8d3fa7c25ec247.tar.xz |
testing/perl-php-serialize : converts the output of PHP's serialize() into the equivalent Perl memory structure and vice versa.
-rw-r--r-- | testing/perl-php-serialization/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/perl-php-serialization/APKBUILD b/testing/perl-php-serialization/APKBUILD new file mode 100644 index 0000000000..0bc208154b --- /dev/null +++ b/testing/perl-php-serialization/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Francesco Colista <francesco.colista@gmail.com> +# Maintainer: Francesco Colista <francesco.colista@gmail.com> +pkgname=perl-php-serialization +_realname=PHP-Serialization +pkgver=0.34 +pkgrel=0 +pkgdesc="simple flexible means of converting the output of PHP's serialize() into the equivalent Perl memory structure, and vice versa." +url="ihttp://search.cpan.org/~bobtfish/PHP-Serialization-0.34/" +arch="noarch" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/$_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="333af0848ad79931875a35cc61dc22e0 PHP-Serialization-0.34.tar.gz" |