diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-11-01 13:56:03 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2017-11-01 14:16:11 +0000 |
commit | cbd571ba6db87b36f5c9fd72cfe127f9adf26243 (patch) | |
tree | d20ecc3b64939966a62a33f6005f7806785168ed | |
parent | d67b10c12ae98e613c65aecf0e0edb8e8a8d7329 (diff) | |
download | aports-cbd571ba6db87b36f5c9fd72cfe127f9adf26243.tar.bz2 aports-cbd571ba6db87b36f5c9fd72cfe127f9adf26243.tar.xz |
main/perl-text-quoted: fix make depends
Add perl-module-install as a make dependency to fix build error:
Can't locate inc/Module/Install.pm in @INC (you may need to install
the inc::Module::Install module)
-rw-r--r-- | main/perl-text-quoted/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/perl-text-quoted/APKBUILD b/main/perl-text-quoted/APKBUILD index 6b35fb3da1..c624e9f35d 100644 --- a/main/perl-text-quoted/APKBUILD +++ b/main/perl-text-quoted/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=perl-text-quoted pkgver=2.08 -pkgrel=0 +pkgrel=1 pkgdesc="Text::Quoted perl module" url="http://search.cpan.org/dist/Text-Quoted/" arch="noarch" license="GPLv2 or Artistic" depends="perl perl-text-autoformat" -makedepends="perl-dev" +makedepends="perl-dev perl-module-install" install="" subpackages="$pkgname-doc" source="http://search.cpan.org/CPAN/authors/id/T/TS/TSIBLEY/Text-Quoted-$pkgver.tar.gz" |