mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
ccaf70012e
- Add stage support PR: ports/182888 Submitted by: Stefan `Sec` Zehl <sec@42.org> (maintainer) [1] Approved by: wg/culot (mentors, implicit)
29 lines
543 B
Makefile
29 lines
543 B
Makefile
# Created by: sec@42.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sls
|
|
PORTVERSION= 1.00
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= dannyboy
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= sec@42.org
|
|
COMMENT= List information about file(s) and directories
|
|
|
|
WRKSRC= ${WRKDIR}/sls
|
|
|
|
PLIST_FILES= bin/sls \
|
|
man/man1/sls.1.gz
|
|
|
|
ALL_TARGET= sls
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|CFLAGS|#&|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${CP} ${WRKSRC}/sls ${STAGEDIR}${PREFIX}/bin
|
|
${CP} ${WRKSRC}/sls.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|