mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
751 B
Bash
21 lines
751 B
Bash
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
|
|
# Maintainer: Charles Mauch <cmauch@gmail.com>
|
|
|
|
pkgname=perl-io-multiplex
|
|
pkgver=1.10
|
|
pkgrel=1
|
|
pkgdesc="Perl/CPAN Module IO::Multiplex : Manage Input Output on many file handles"
|
|
arch=(any)
|
|
url="http://search.cpan.org/dist/IO-Multiplex/"
|
|
license=("GPL" "Artistic")
|
|
source=("http://www.cpan.org/authors/id/B/BB/BBB/IO-Multiplex-$pkgver.tar.gz")
|
|
md5sums=('ce230ee0a4afbff59da66f0c42e0340b')
|
|
|
|
build() {
|
|
cd $startdir/src/IO-Multiplex-$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
|
|
}
|