blob: ae62a279c2cf0d7b2ba6bb0f58c8bf433d71e357 (
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
|
# $Id: PKGBUILD 186399 2013-05-26 09:25:04Z bluewind $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: kevin <kevin@archlinux.org>
# Contributor: Eric Johnson <eric@coding-zone.com>
pkgname=perl-dbd-mysql
_realname=DBD-mysql
pkgver=4.023
pkgrel=2
pkgdesc="Perl/CPAN DBD::mysql module for interacting with MySQL via DBD"
arch=('i686' 'x86_64')
license=('GPL' 'PerlArtistic')
url="http://search.cpan.org/dist/${_realname}/"
depends=('libmariadbclient' 'perl-dbi')
makedepends=('mariadb')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz)
md5sums=('6ee956cf33ddce6441b36b6c1c983528')
build() {
cd $_realname-$pkgver
# install module in vendor directories.
perl Makefile.PL INSTALLDIRS=vendor --testsocket=/tmp/socket.mysql
make
}
check() {
cd $_realname-$pkgver
mkdir -p /tmp/mysql_test
mysql_install_db \
--basedir=/usr \
--datadir=/tmp/mysql_test
mysqld -P 17999 \
--socket=/tmp/socket.mysql \
--datadir=/tmp/mysql_test &
sleep 10
DAEMON_PORT=$!
make test || true
kill -9 $DAEMON_PORT
}
package() {
cd $_realname-$pkgver
make install DESTDIR="$pkgdir"
}
|