mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
726 B
Bash
21 lines
726 B
Bash
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
|
|
|
pkgname=perl-text-charwidth
|
|
pkgver=0.04
|
|
pkgrel=3
|
|
pkgdesc="Perl/CPAN Module Text::CharWidth"
|
|
arch=("i686" "x86_64")
|
|
url="http://search.cpan.org/dist/Text-CharWidth"
|
|
license=("GPL" "Artistic")
|
|
source=("http://www.cpan.org/authors/id/K/KU/KUBOTA/Text-CharWidth-0.04.tar.gz")
|
|
md5sums=('37a723df0580c0758c0ee67b37336c15')
|
|
|
|
build() {
|
|
cd $startdir/src/Text-CharWidth-0.04
|
|
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
|
make || return 1
|
|
make install DESTDIR=$startdir/pkg || return 1
|
|
find $startdir/pkg -name '.packlist' -delete
|
|
find $startdir/pkg -name '*.pod' -delete
|
|
}
|