5cb9937782
- Use consistent target name Approved by: portmgr blanket
27 lines
572 B
Makefile
27 lines
572 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pxattr
|
|
PORTVERSION= 2.1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://www.lesbonscomptes.com/pxattr/
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Portable utility to work with file extended attributes
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
cd ${WRKSRC}/doc/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|