summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5a1b59b4122ceab4e944d9c2e4ddf4a7b21c6412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Contributor: Max Pray a.k.a. Synthead <synthead@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Charles Mauch <cmauch@gmail.com>
# Maintainer: Ruben Kelevra <ruben@vfn-nrw.de>

pkgname=perl-perlio-eol
pkgver=0.14
pkgrel=2
pkgdesc="Perl/CPAN Module PerlIO::eol"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/PerlIO-eol"
license=('GPL' 'PerlArtistic')
replaces=('perlio-eol')
depends=('perl')
options=('!emptydirs')
source=("http://www.cpan.org/authors/id/A/AU/AUDREYT/PerlIO-eol-$pkgver.tar.gz")
sha256sums=('423b8006d80c7a4385ce4144cd3949abe1c31ac5ed7deb40dbdbc972400692e7')

build() {
	cd "$srcdir/PerlIO-eol-$pkgver"
	PERL_MM_USE_DEFAULT=1 INSTALLDIRS=vendor perl Makefile.PL
	make
}

package() {
	cd "$srcdir/PerlIO-eol-$pkgver"
	make DESTDIR="$pkgdir" install
}