summaryrefslogtreecommitdiffstats
path: root/perl-mail-checkuser/PKGBUILD
blob: af9c2cb04ca20e99e07857fddec4e4a99393011c (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
48
49
50
51
52
53
54
# Maintainer: Florian Pritz <flo@xssn.at>
# PKGBUILD generated by pacpan
pkgname=perl-mail-checkuser
_realname=Mail-CheckUser
pkgver=1.21
pkgrel=1
pkgdesc="no description available"
arch=(i686 x86_64)
license=('unknown: check http://search.cpan.org/src/ILYAM/Mail-CheckUser-1.21/README.txt')
url="http://search.cpan.org/~ilyam/Mail-CheckUser"
options=(!emptydirs)

depends=('perl')

#provides=('Mail-CheckUser')
provides=('perl-mail-checkuser=1.21' 'perl-mail-checkuser=1.21')

source=(http://search.cpan.org/CPAN/authors/id/I/IL/ILYAM/Mail-CheckUser-1.21.tar.gz)
md5sums=('32a57a4679e2bde8a85201617776d69f')

build() {
  _expected_dir="${srcdir}/${_realname}-${pkgver}"
  if [ -d "$_expected_dir" ]; then
    cd "$_expected_dir"
  else
    _expected_dir="${srcdir}/$(bsdtar -t -f $(basename $source) | head -n1)"
    if [ -d "$_expected_dir" ]; then
      cd "$_expected_dir"
    else
      _makefile=$(find $srcdir -iname Makefile.PL)
      if [ ! -z "$_makefile" ]; then
        _expected_dir=$(dirname $_makefile)
        if [ -d "$_expected_dir" ]; then
          cd "$_expected_dir"
        else
          echo "ERROR unable to detect source directory"
          echo "--> this is often due to CPAN's lack of standard naming conventions"
          echo "--> it may be possible to fix this by adjusting the build function in the PKGBUILD"
        fi
      fi
    fi
  fi
  # install module in vendor directories.
  PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
  make  || return 1
  make install DESTDIR=${pkgdir} || return 1

  # remove perllocal.pod and .packlist
  find ${pkgdir} -name perllocal.pod -delete
  find ${pkgdir} -name .packlist -delete
}

# vim:set ts=2 sw=2 et: