mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
21 lines
737 B
Bash
21 lines
737 B
Bash
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
|
|
|
pkgname=perl-file-path-expand
|
|
pkgver=1.02
|
|
pkgrel=3
|
|
pkgdesc="Perl/CPAN Module File::Path::Expand"
|
|
arch=("i686" "x86_64")
|
|
url="http://search.cpan.org/dist/File-Path-Expand"
|
|
license=("GPL" "Artistic")
|
|
source=("http://www.cpan.org/authors/id/R/RC/RCLAMP/File-Path-Expand-1.02.tar.gz")
|
|
md5sums=('742aa40a4ffb26d14de01192764bd7ab')
|
|
|
|
build() {
|
|
cd $startdir/src/File-Path-Expand-1.02
|
|
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
|
|
}
|