mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
fe8c93a322
With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight
27 lines
513 B
Makefile
27 lines
513 B
Makefile
# Created by: Antonios Anastasiadis <antonakis@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xps
|
|
PORTVERSION= 0.5.2
|
|
CATEGORIES= ports-mgmt
|
|
|
|
MAINTAINER= serpent7776@gmail.com
|
|
COMMENT= Tool that searches the ports tree by various criteria
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= serpent7776
|
|
|
|
USES= python
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/xps \
|
|
man/man1/xps.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/xps ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xps.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|