diff options
author | Britney Fransen <brfransen@gmail.com> | 2018-05-30 20:51:49 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2018-05-30 20:51:49 (GMT) |
commit | ef0e2190db0f882695b12bf24085684ca893f2c3 (patch) | |
tree | 42a239ded5c7b5ed7c4cb1ed49aefa044ebed7ec /abs | |
parent | 91b948a397afe5b5b25d55782955c4dd7538afef (diff) | |
download | linhes_pkgbuild-ef0e2190db0f882695b12bf24085684ca893f2c3.zip linhes_pkgbuild-ef0e2190db0f882695b12bf24085684ca893f2c3.tar.gz linhes_pkgbuild-ef0e2190db0f882695b12bf24085684ca893f2c3.tar.bz2 |
perl-http-response-encoding: rebuild
Diffstat (limited to 'abs')
-rw-r--r-- | abs/core/perl_modules/perl-http-response-encoding/PKGBUILD | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/abs/core/perl_modules/perl-http-response-encoding/PKGBUILD b/abs/core/perl_modules/perl-http-response-encoding/PKGBUILD index be9c20e..c65927c 100644 --- a/abs/core/perl_modules/perl-http-response-encoding/PKGBUILD +++ b/abs/core/perl_modules/perl-http-response-encoding/PKGBUILD @@ -1,28 +1,29 @@ -# $Id: PKGBUILD 3654 2009-10-07 08:13:13Z spupykin $ -# Maintainer: Allan McRae <allan@archlinux.org> +# $Id$ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Allan McRae <allan@archlinux.org> # Contributor: Mladen Pejakovic <pejakm@gmail.com> pkgname=perl-http-response-encoding pkgver=0.06 -pkgrel=1 +pkgrel=4 pkgdesc="Adds encoding to HTTP::Response" -arch=(any) +arch=('any') url="http://search.cpan.org/dist/HTTP-Response-Encoding" license=('GPL' 'PerlArtistic') depends=('perl-libwww') options=('!emptydirs') -source=(http://www.cpan.org/authors/id/D/DA/DANKOGAI/HTTP-Response-Encoding-$pkgver.tar.gz) -md5sums=('7e1d46f2d88022580e1a18bb7ac4ab71') +source=("https://www.cpan.org/authors/id/D/DA/DANKOGAI/HTTP-Response-Encoding-$pkgver.tar.gz") +sha256sums=('10167b8e238a682004ab0d7accbe9d76eae2db57af07c5ae2dfa808074a4a8aa') build() { - cd $srcdir/HTTP-Response-Encoding-$pkgver - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 - make || return 1 + cd "${srcdir}"/HTTP-Response-Encoding-$pkgver + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make } + package() { - cd $srcdir/HTTP-Response-Encoding-$pkgver - make install DESTDIR=$pkgdir || return 1 - find $startdir/pkg -name '.packlist' -delete - find $startdir/pkg -name '*.pod' -delete + cd "${srcdir}"/HTTP-Response-Encoding-$pkgver + make install DESTDIR="${pkgdir}" + find "${pkgdir}" -name '.packlist' -delete + find "${pkgdir}" -name '*.pod' -delete } - |