mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
522ad32f74
- Add stage support Approved by: wg (mentor)
23 lines
582 B
Makefile
23 lines
582 B
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= minised
|
|
PORTVERSION= 1.14
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://dl.exactcode.de/oss/minised/
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= Smaller, cheaper, faster sed implementation
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/minised.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O1||' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|