mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
36 lines
840 B
Makefile
36 lines
840 B
Makefile
# Created by: Jose Liang <jose@jose.idv.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= simplog
|
|
PORTVERSION= 0.9.3.4
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.9.3.2:src
|
|
DISTFILES= ${PORTNAME}-0.9.3.2.tar.gz:src \
|
|
${PORTNAME}_update_only-${PORTVERSION}.tar.gz:update
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A complete and powerful blogging tool
|
|
|
|
DATADIR= ${PREFIX}/www/simplog
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC?= ${WRKDIR}/simplog
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
@${ECHO} ""
|
|
@${ECHO} "===> Installing simplog"
|
|
@${MKDIR} ${DATADIR}
|
|
cd ${WRKSRC} && ${CP} -r * ${DATADIR}
|
|
|
|
post-install:
|
|
@${ECHO} ""
|
|
@${ECHO} "===> Congratulations"
|
|
@${ECHO} "The installation of simplog is complete, please check\
|
|
README in ${DATADIR} first."
|
|
@${ECHO} "For more informations, documentation is available at\
|
|
${DATADIR}/doc/index.php."
|
|
@${ECHO} ""
|
|
|
|
.include <bsd.port.mk>
|