dca6c80491
- Bump PORTREVISION for dependent ports Changes: https://github.com/publicsuffix/list/commits/master
30 lines
660 B
Makefile
30 lines
660 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= public_suffix_list
|
|
PORTVERSION= 0.0.0.20160510
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Public Suffix List by Mozilla
|
|
|
|
LICENSE= MPL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%DATADIR%%/public_suffix_list.dat \
|
|
%%DATADIR%%/test_psl.txt
|
|
|
|
GH_ACCOUNT= publicsuffix
|
|
GH_PROJECT= list
|
|
GH_TAGNAME= 2226f9c
|
|
USE_GITHUB= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/public_suffix_list.dat ${STAGEDIR}${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/tests/test_psl.txt ${STAGEDIR}${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|