blob: 53cb50634cc1bb9c5e79957e48487550620c14c3 (
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
|
# $Id: PKGBUILD 188483 2013-06-14 22:43:41Z eric $
# Maintainer:
pkgname=perl-dbd-sqlite
pkgver=1.39
pkgrel=1
pkgdesc="Self-contained RDBMS in a DBI driver"
arch=('i686' 'x86_64' 'mips64el')
url="http://search.cpan.org/dist/DBD-SQLite"
license=('GPL' 'PerlArtistic')
depends=('perl-dbi' 'sqlite')
options=('!emptydirs')
source=(http://www.cpan.org/authors/id/I/IS/ISHIGAKI/DBD-SQLite-${pkgver}.tar.gz)
md5sums=('8ca0719852fcbcbbee470c705eeff24a')
build() {
cd DBD-SQLite-${pkgver}
perl Makefile.PL INSTALLDIRS=vendor
make
}
check() {
cd DBD-SQLite-${pkgver}
make test
}
package() {
cd DBD-SQLite-${pkgver}
make install DESTDIR="${pkgdir}"
}
|