mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
3ec7183436
- Convert tab in space in pkg-descr - Remove "Created by" from header PR: ports/184105 Submitted by: Takefu <takefu@airport.fm> (maintainer)
29 lines
595 B
Makefile
29 lines
595 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= qprint
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.fourmilab.ch/webtools/qprint/
|
|
|
|
MAINTAINER= takefu@airport.fm
|
|
COMMENT= Encode and decode Quoted-Printable files
|
|
|
|
LICENSE= public
|
|
LICENSE_NAME= Public Domain
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
LICENSE_PERMS= auto-accept
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
PLIST_FILES= bin/qprint \
|
|
man/man1/qprint.1.gz
|
|
|
|
ALL_TARGET= prog check wringer
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/qprint ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/qprint.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|