f40372f145
* Cleanup Makefile * Provide improve pkg-message to make installing and upgrading easier Changes: https://github.com/sblaisot/automatic_addressbook/compare/0.4.2...0.4.3 PR: 221148 Submitted by: Andrej Ebert (maintainer) Reviewed by: matthew (mentor), mat Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11896
31 lines
590 B
Makefile
31 lines
590 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= automatic_addressbook
|
|
PORTVERSION= 0.4.3
|
|
CATEGORIES= mail
|
|
PKGNAMEPREFIX= roundcube-
|
|
|
|
MAINTAINER= andrej@ebert.su
|
|
COMMENT= Roundcube webmail automatic addressbook plugin
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= roundcube>=0.8:mail/roundcube
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sblaisot
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
RCDIR= ${PREFIX}/www/roundcube
|
|
WWWDIR= ${RCDIR}/plugins/automatic_addressbook
|
|
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= RCDIR=${RCDIR} PLUGINDIR=${WWWDIR}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
cd ${WRKSRC} && ${PAX} -r -w . ${STAGEDIR}${WWWDIR}
|
|
|
|
.include <bsd.port.mk>
|