mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
a8ed171245
Convert a couple to github, and use some options helpers on the way. Sponsored by: Absolight
36 lines
766 B
Makefile
36 lines
766 B
Makefile
# Created by: Carlo Strub <c-s@c-s.li>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ACH
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= GHC
|
|
EXTRACT_SUFX= -alpha.tar
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= Free, open source tool for complex research problems
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_MYSQL= yes
|
|
USE_PHP= yes
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Burton
|
|
GH_PROJECT= Analysis-of-Competing-Hypotheses
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-alpha
|
|
NO_BUILD= yes
|
|
SUB_FILES+= pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
WWWDIR?= ${PREFIX}/www/${PORTNAME}
|
|
|
|
# Get rid of temp files packaged in the upstream distfile
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -type f -not -name .htaccess -a \
|
|
-name .\* -delete
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|