diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 14:07:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 14:07:57 +0000 |
commit | 358bb9d8a8ce484b3a127adc269882afbfd0f65b (patch) | |
tree | 8dfc5177ec572891ff034f4a318d11477de631c4 | |
parent | 435ef57309562b250a6d0261072d43485f7ac404 (diff) | |
download | aports-358bb9d8a8ce484b3a127adc269882afbfd0f65b.tar.bz2 aports-358bb9d8a8ce484b3a127adc269882afbfd0f65b.tar.xz |
testing/perl-text-password-pronounceable: new aport
Text::Password::Pronounceable perl module
http://search.cpan.org/dist/Text-Password-Pronounceable/
-rw-r--r-- | testing/perl-text-password-pronounceable/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/perl-text-password-pronounceable/APKBUILD b/testing/perl-text-password-pronounceable/APKBUILD new file mode 100644 index 0000000000..f0b96499fc --- /dev/null +++ b/testing/perl-text-password-pronounceable/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-text-password-pronounceable +pkgver=0.30 +pkgrel=0 +pkgdesc="Text::Password::Pronounceable perl module" +url="http://search.cpan.org/dist/Text-Password-Pronounceable/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/T/TS/TSIBLEY/Text-Password-Pronounceable-$pkgver.tar.gz" + +_builddir="$srcdir"/Text-Password-Pronounceable-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +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 || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="2a6a3c9197dfb5912f763c0c4f285b48 Text-Password-Pronounceable-0.30.tar.gz" |