blob: 1667f5e40745e2546e4ef04f12822bda42282c19 (
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
|
# $NetBSD: Makefile,v 1.4 2011/12/06 00:19:25 sbd Exp $
#
DISTNAME= calendar-2.0.4
PKGNAME= ocaml-${DISTNAME}
PKGREVISION= 1
CATEGORIES= time devel
MASTER_SITES= # http://www.lri.fr/~signoles/prog/calendar/
MAINTAINER= jaapb@kerguelen.org
HOMEPAGE= http://www.lri.fr/~signoles/prog.en.html/
COMMENT= OCaml library managing dates and times
PKG_DESTDIR_SUPPORT= user-destdir
DEPENDS+= ocaml-findlib-[0-9]*:../../devel/ocaml-findlib
GNU_CONFIGURE= yes
USE_TOOLS+= gmake
.include "../../mk/bsd.prefs.mk"
.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || \
(${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "x86_64")
PLIST_SRC+= PLIST.opt
.endif
PLIST_SRC+= PLIST
TEST_TARGET= tests
INSTALLATION_DIRS+= lib/ocaml/site-lib
.include "../../lang/ocaml/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|