diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-24 07:12:32 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-09-24 07:12:32 +0000 |
commit | 694f36b6fc887fc4d30a83df92949e2c66a70dfd (patch) | |
tree | b658b5c95d7a92f5cee5041d475946a8e8a613e1 /main/perl-io-html | |
parent | 8c79341a2fac541a8ae2e72f3b9d2e2c54078711 (diff) | |
download | aports-694f36b6fc887fc4d30a83df92949e2c66a70dfd.tar.bz2 aports-694f36b6fc887fc4d30a83df92949e2c66a70dfd.tar.xz |
main/perl-io-html: new aport
Open an HTML file with automatic charset detection
http://search.cpan.org/dist/IO-HTML/
Diffstat (limited to 'main/perl-io-html')
-rw-r--r-- | main/perl-io-html/APKBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/main/perl-io-html/APKBUILD b/main/perl-io-html/APKBUILD new file mode 100644 index 0000000000..730fb1bc58 --- /dev/null +++ b/main/perl-io-html/APKBUILD @@ -0,0 +1,40 @@ +# Automatically generated by apkbuild-cpan, template 1 +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-io-html +_pkgreal=IO-HTML +pkgver=1.00 +pkgrel=0 +pkgdesc="Open an HTML file with automatic charset detection" +url="http://search.cpan.org/dist/IO-HTML/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="" +cpanmakedepends=" " +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/$_pkgreal-$pkgver.tar.gz" + +_builddir="$srcdir/$_pkgreal-$pkgver" + +prepare() { + cd "$_builddir" + export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor +} + +build() { + cd "$_builddir" + export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'` + make && make test +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="fdfa3fe3d61a7fda9236c8d9776cdd65 IO-HTML-1.00.tar.gz" +sha256sums="04e29fd5f2535e35a9d478f2775471d79e2da6a3cf2bd33befb2dcd7811ad21a IO-HTML-1.00.tar.gz" +sha512sums="26c718457d8bcf05f9f6b1e7f6da48557c0288cf0a63f7fcb5e6f022bc5c2f317c46056d7b07eedced252ff434a869b6b781a14344a1c60b3696acabd10dcc4b IO-HTML-1.00.tar.gz" |