summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 52989e149f5c65ce09611f9d96514077da073ed6 (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
# Maintainer: Phillip Smith <pkgbuild@phs.id.au>
# Contributor:  TDY <tdy@gmx.com>
# Contributor: Max Nemeth <max.nemeth@gmail.com>

### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
### Please ask support questions about this software in one of:
###   1) The AUR comments; OR
###   2) Upstream forums/maillist etc; OR
###   3) The ArchLinux forums
### I do not always know enough about the software itself, or don't have the
### time to promptly respond to direct emails.
### If you have found a problem with the package/PKGBUILD (as opposed to
### the software) then please do email me or post an AUR comment.

pkgname=perl-config-inifiles
pkgver=2.93
pkgrel=1
pkgdesc="A Perl module for reading .ini-style configuration files"
arch=('any')
url="http://search.cpan.org/dist/Config-IniFiles/"
license=('GPL' 'PerlArtistic')
depends=('perl' 'perl-list-moreutils' 'perl-io-stringy')
makedepends=('perl-module-build')
options=('!emptydirs')
source=("http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Config-IniFiles-$pkgver.tar.gz")
md5sums=('f02b3639ed12c08022d537bc0356725c')

build() {
  cd "$srcdir"/Config-IniFiles-$pkgver
  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
  export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
  /usr/bin/perl Build.PL
  ./Build
}

check() {
  cd "$srcdir"/Config-IniFiles-$pkgver
  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
  export PERL_MM_USE_DEFAULT=1
  ./Build test
}

package() {
  cd "$srcdir"/Config-IniFiles-$pkgver
  unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
  ./Build install installdirs=vendor destdir="$pkgdir"
}

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