-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
40 lines (28 loc) · 878 Bytes
/
Makefile
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
# $OpenBSD: Makefile,v 1.2 2016/11/25 20:42:57 sthen Exp $
COMMENT = profile HMMs for biological sequence analysis
V = 3.1b2
DISTNAME = hmmer-$V
PKGNAME = hmmer-3.1beta2
REVISION = 0
CATEGORIES = biology
HOMEPAGE = http://hmmer.org
MAINTAINER = Senthil Kumar M <[email protected]>
# GPLv3 but see COPYRIGHT regarding patents
PERMIT_PACKAGE_CDROM = Yes
WANTLIB += c m pthread
MASTER_SITES = http://eddylab.org/software/hmmer3/$V/
MAKE_FLAGS = V=1
SEPARATE_BUILD = Yes
USE_GMAKE = Yes
CONFIGURE_STYLE = gnu
.if ${MACHINE_ARCH} != "amd64"
CONFIGURE_ARGS += --disable-sse
PKG_ARGS+= -Damd64=0
.else
PKG_ARGS+= -Damd64=1
.endif
post-install:
${INSTALL_DATA} ${WRKDIST}/Userguide.pdf ${PREFIX}/share/doc/hmmer
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/hmmer
${INSTALL_DATA} ${WRKDIST}/tutorial/* ${PREFIX}/share/examples/hmmer
.include <bsd.port.mk>