mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
615255b507
- Bump PORTREVISION for dependent ports Changes: https://github.com/publicsuffix/list/commits/master
33 lines
762 B
Makefile
33 lines
762 B
Makefile
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= public_suffix_list
|
|
PORTVERSION= 0.0.0.20170809
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Public Suffix List by Mozilla
|
|
|
|
LICENSE= MPL20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
SLAVEDIRS= dns/p5-Mozilla-PublicSuffix dns/rubygem-public_suffix dns/rubygem-public_suffix_service
|
|
|
|
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= 7daa3a2
|
|
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>
|