diff options
Diffstat (limited to 'testing/perl-html-quoted/APKBUILD')
-rw-r--r-- | testing/perl-html-quoted/APKBUILD | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/perl-html-quoted/APKBUILD b/testing/perl-html-quoted/APKBUILD deleted file mode 100644 index b88a76f2d5..0000000000 --- a/testing/perl-html-quoted/APKBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=perl-html-quoted -pkgver=0.03 -pkgrel=0 -pkgdesc="HTML::Quoted perl module" -url="http://search.cpan.org/dist/HTML-Quoted/" -arch="noarch" -license="GPLv2 or Artistic" -depends="perl perl-html-parser" -makedepends="perl-dev" -install="" -subpackages="$pkgname-doc" -source="http://search.cpan.org/CPAN/authors/id/R/RU/RUZ/HTML-Quoted-$pkgver.tar.gz" - -_builddir="$srcdir"/HTML-Quoted-$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="dc614a27838ee3218f32738de1881e1f HTML-Quoted-0.03.tar.gz" |