mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
26 lines
593 B
Makefile
26 lines
593 B
Makefile
# Created by: Dmitry Sivachenko <demon@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mini_sendmail
|
|
PORTVERSION= 1.3.6
|
|
PORTREVISION= 1
|
|
CATEGORIES+= mail
|
|
MASTER_SITES= http://www.acme.com/software/mini_sendmail/
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= Tiny MTA with only smart relay capability
|
|
|
|
MAN8= mini_sendmail.8
|
|
PLIST_FILES= bin/mini_sendmail
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
cd ${WRKSRC} && \
|
|
${CC} ${CFLAGS} -static -o ${PORTNAME} ${PORTNAME}.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${MAN8PREFIX}/man/man8/
|
|
|
|
.include <bsd.port.mk>
|