mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
37 lines
866 B
Makefile
37 lines
866 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mprime
|
|
PORTVERSION= 0.0.${SOURCE_VERSION}
|
|
CATEGORIES= math benchmarks net
|
|
MASTER_SITES= ftp://mersenne.org/gimps/
|
|
DISTNAME= sprime${PORTVERSION:S/^0.0.//:S/.//}-freebsd
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= mersenne.org distributed Great Internet Mersenne Prime Search
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
SUB_FILES= pkg-message wrapper.sh
|
|
|
|
# source code version
|
|
SOURCE_VERSION= 24.14
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/mprime ${PREFIX}/bin/mprime-real
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${PREFIX}/bin/mprime
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}${PKGNAMESUFFIX}
|
|
@${INSTALL_DATA} ${WRKDIR}/*.txt ${DOCSDIR}${PKGNAMESUFFIX}
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|