27 lines
549 B
Makefile
27 lines
549 B
Makefile
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ua_parser
|
|
PORTVERSION= 0.5.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
PKGNAMESUFFIX= -core
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= Regex file for building language ports of Browserscope's UA parser
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ua-parser
|
|
GH_PROJECT= uap-core
|
|
GH_TAGNAME= c7c5284
|
|
|
|
PLIST_FILES= %%DATADIR%%/regexes.yaml
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/regexes.yaml ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|