mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
0d2dd048d3
- Pass maintainership to submitter - Respect CFLAGS - Remove Author: from pkg-descr PR: ports/176199 [1] Submitted by: Danilo Egea Gondolfo <danilogondolfo@gmail.com> [1]
24 lines
565 B
Makefile
24 lines
565 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= danilogondolfo@gmail.com
|
|
COMMENT= Smaller, cheaper, faster sed implementation
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O1||' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|