# $Id: PKGBUILD 123954 2014-12-16 09:10:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: François Charette <firmicus ατ gmx δοτ net>

pkgname=perl-inline
pkgver=0.78
pkgrel=1
pkgdesc="Write Perl subroutines in other languages"
arch=('any')
url="http://search.cpan.org/dist/Inline"
license=('GPL' 'PerlArtistic')
depends=('perl>=5.10.0' 'perl-parse-recdescent>=1.8')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/I/IN/INGY/Inline-$pkgver.tar.gz")
md5sums=('54444f5c2e27cf296a9e1e9d0be04817')

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

package() {
  cd  $srcdir/Inline-$pkgver
  make install DESTDIR=$pkgdir
  find $pkgdir -name '.packlist' -delete
  find $pkgdir -name '*.pod' -delete
}
