blob: cd6eb97f3be9d0dfcaa642d0c8f8444e5160d871 (
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
|
# $NetBSD: Makefile,v 1.12 2012/10/08 15:18:21 jaapb Exp $
#
DISTNAME= ocaml-mysql-1.1.1
PKGREVISION= 1
CATEGORIES= databases
MASTER_SITES= http://forge.ocamlcore.org/frs/download.php/870/
MAINTAINER= jaapb@NetBSD.org
HOMEPAGE= http://ocaml-mysql.forge.ocamlcore.org/
COMMENT= Ocaml library for MySQL database access
LICENSE= gnu-lgpl-v2.1
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
USE_TOOLS+= gmake
DOCDIR= ${PREFIX}/share/doc/ocaml-mysql
INSTALLATION_DIRS= ${DOCDIR}
BUILD_TARGET= all htdoc
PLIST_VARS= opt
.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || \
(${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "x86_64") || \
(${MACHINE_ARCH} == "arm")
BUILD_TARGET+= opt
PLIST.opt= yes
.endif
post-install:
cd ${WRKSRC}/doc/mysql/html && ${INSTALL_DATA} *.html ${DESTDIR}${DOCDIR}
.include "../../lang/ocaml/buildlink3.mk"
.include "../../devel/ocaml-findlib/buildlink3.mk"
.include "../../databases/mysql5-client/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|