mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
29 lines
926 B
Bash
29 lines
926 B
Bash
# $Id: PKGBUILD 66843 2010-02-01 19:44:26Z giovanni $
|
|
# Maintainer: Dale Blount <dale@archlinux.org>
|
|
# Contributor: Dale Blount <dale@archlinux.org>
|
|
|
|
pkgname=perl-error
|
|
_realname=Error
|
|
pkgver=0.17016
|
|
pkgrel=1
|
|
pkgdesc="Perl/CPAN Error module - Error/exception handling in an OO-ish way"
|
|
url="http://search.cpan.org/dist/${_realname}/"
|
|
arch=(i686 x86_64)
|
|
license=('PerlArtistic' 'GPL')
|
|
depends=('perl>=5.10.0')
|
|
options=('!emptydirs')
|
|
source=(http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/${_realname}-${pkgver}.tar.gz)
|
|
md5sums=('eedcd3c6970568dd32092b5334328eff')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${_realname}-${pkgver}
|
|
# install module in vendor directories.
|
|
perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make install DESTDIR=${startdir}/pkg || return 1
|
|
|
|
# remove perllocal.pod and .packlist
|
|
find ${startdir}/pkg -name perllocal.pod -delete
|
|
find ${startdir}/pkg -name .packlist -delete
|
|
}
|