summaryrefslogtreecommitdiff
path: root/extra/perl-bit-vector/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/perl-bit-vector/PKGBUILD')
-rw-r--r--extra/perl-bit-vector/PKGBUILD32
1 files changed, 10 insertions, 22 deletions
diff --git a/extra/perl-bit-vector/PKGBUILD b/extra/perl-bit-vector/PKGBUILD
index e0852fbc8..08f175bfb 100644
--- a/extra/perl-bit-vector/PKGBUILD
+++ b/extra/perl-bit-vector/PKGBUILD
@@ -1,43 +1,31 @@
-# $Id: PKGBUILD 186393 2013-05-26 09:24:52Z bluewind $
+# $Id: PKGBUILD 189971 2013-07-12 02:57:43Z eric $
# Maintainer:
# Contributor: Kevin Piche <kevin@archlinux.org>
-# Contributor: K. Piche <kpiche@rogers.com>
pkgname=perl-bit-vector
-_cpanname=Bit-Vector
-pkgver=7.2
-pkgrel=3
+pkgver=7.3
+pkgrel=1
pkgdesc='Efficient bit vector, set of integers and "big int" math library'
arch=('i686' 'x86_64' 'mips64el')
license=('GPL' 'LGPL' 'PerlArtistic')
-url="http://search.cpan.org/dist/${_cpanname}/"
+url="http://search.cpan.org/dist/Bit-Vector/"
depends=('perl-carp-clan' 'perl')
options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/A/AN/ANDK/${_cpanname}-${pkgver}.tar.gz
- Bit-Vector-destroy.patch)
-md5sums=('bc6ae34738b8f889290bf50099ff8aed'
- 'c86a55b84cb05dd04004ee8f56ee2ee3')
-
-prepare() {
- cd "${srcdir}/${_cpanname}-$pkgver"
-
- # https://rt.cpan.org/Public/Bug/Display.html?id=84250
- patch -Np1 -i "${srcdir}/Bit-Vector-destroy.patch"
-}
+source=(http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/Bit-Vector-${pkgver}.tar.gz)
+md5sums=('684e63a93db1e0eda25a103258b39725')
build() {
- cd "${srcdir}/${_cpanname}-$pkgver"
- # install module in vendor directories.
- PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
+ cd Bit-Vector-$pkgver
+ perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
- cd "${srcdir}/${_cpanname}-$pkgver"
+ cd Bit-Vector-$pkgver
make test
}
package() {
- cd "${srcdir}/${_cpanname}-$pkgver"
+ cd Bit-Vector-$pkgver
make DESTDIR="${pkgdir}" install
}