mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
21 lines
812 B
Bash
21 lines
812 B
Bash
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
|
|
|
pkgname=perl-object-realize-later
|
|
pkgver=0.18
|
|
pkgrel=2
|
|
pkgdesc="Perl/CPAN Module Object::Realize::Later : Delay construction of real data until used"
|
|
arch=("i686" "x86_64")
|
|
url="http://search.cpan.org/~markov/Object-Realize-Later/"
|
|
license=("GPL" "Artistic")
|
|
source=("http://www.cpan.org/authors/id/M/MA/MARKOV/Object-Realize-Later-$pkgver.tar.gz")
|
|
md5sums=('ec109cd68b40cf25090cc52b6cfbabaf')
|
|
|
|
build() {
|
|
cd $startdir/src/Object-Realize-Later-$pkgver
|
|
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
|
|
}
|