summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3c8ef8e0583b22b062e4f85722c267e3fcc7f166 (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
55
56
57
# Contributor: Max Pray a.k.a. Synthead <synthead@gmail.com>
# Maintainer: Ruben Kelevra <ruben@vfn-nrw.de>

pkgname="perl-dbix-searchbuilder"
_cpanname="DBIx-SearchBuilder"
pkgver="1.65"
pkgrel="1"
pkgdesc="Encapsulate SQL queries and rows in simple perl objects."
arch=("any")
url="http://search.cpan.org/~tsibley/$_cpanname-$pkgver/"
license=("GPL" "PerlArtistic")
depends=(
  "perl-cache-simple-timedexpiry"
  "perl-capitalization"
  "perl-class-accessor"
  "perl-class-returnvalue"
  "perl-clone"
  "perl-dbd-sqlite"
  "perl-dbix-dbschema"
  "perl-devel-stacktrace>=1.30"
  "perl-want"
  "perl>=5.5.0"
)
options=("!emptydirs")
source=("http://search.cpan.org/CPAN/authors/id/T/TS/TSIBLEY/$_cpanname-$pkgver.tar.gz")
sha256sums=('4b91265f6543031a9a267e10d5c7bc6926f100d19ac1edae36793227419ae349')

# Function to change to the working directory and set
# environment variables to override undesired options.
prepareEnvironment() {
  cd "$srcdir/$_cpanname-$pkgver"
  export \
    PERL_MM_USE_DEFAULT=1 \
    PERL_AUTOINSTALL=--skipdeps \
    PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
    PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
    MODULEBUILDRC=/dev/null
}

build() {
  prepareEnvironment
  /usr/bin/perl Makefile.PL
  make
}

check() {
  prepareEnvironment
  make test
}

package() {
  prepareEnvironment
  make install

  # Remove "perllocal.pod" and ".packlist".
  find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
}