- Convert to USE_GITHUB, define LICENSE (MIT) - Clean up the Makefile and port description PR: ports/175354 [*] Submitted by: maintainer
27 lines
504 B
Makefile
27 lines
504 B
Makefile
# Created by: Antonios Anastasiadis <antonakis@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xps
|
|
PORTVERSION= 0.4.1
|
|
CATEGORIES= ports-mgmt
|
|
|
|
MAINTAINER= anastasiadis@datalive.gr
|
|
COMMENT= Tool that searches the ports tree by various criteria
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= antanst
|
|
GH_COMMIT= 997c66f
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/xps
|
|
MAN1= xps.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/xps ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|