summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5e9521abf4eba9057f3d0c8b548cf9536a8d5b01 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pkgname=perl-vcg
pkgver=0.5
pkgrel=1
_author="T/TE/TEEJAY"
_perlmod="VCG"
pkgdesc="Interface to the VCG graphing tool"
arch=('any')
url="http://search.cpan.org/dist/VCG/"
license=('GPL' 'PerlArtistic')
depends=(perl)
makedepends=(perl-ipc-run)
options=(!emptydirs)
source=("http://search.cpan.org/CPAN/authors/id/$_author/$_perlmod-$pkgver.tar.gz")
sha256sums=('c5095c203744e2b73ba15e24a3a4daef9a5c08f0ef92dcdaf80e9c961f1082bf')
prepare(){
  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps MODULEBUILDRC=/dev/null
}
build(){
  cd "$srcdir"/$_perlmod-$pkgver

  if [ -f Makefile.PL ]; then
    /usr/bin/perl Makefile.PL
    make
  else
    /usr/bin/perl Build.PL
    ./Build
  fi
}
check(){
  cd "$srcdir"/$_perlmod-$pkgver

  if [ -f Makefile.PL ]; then
    make test
  else
    ./Build test
  fi
}
package(){
  cd "$srcdir"/$_perlmod-$pkgver

  if [ -f Makefile.PL ]; then
    make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
  else
    ./Build install installdirs=vendor destdir="$pkgdir"
  fi
}