mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
30 lines
583 B
Makefile
30 lines
583 B
Makefile
# Created by: martin.dieringer@gmx.de
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= html2tex
|
|
PORTVERSION= 2.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.iwriteiam.nl/
|
|
DISTNAME= html2tex_c.txt
|
|
EXTRACT_SUFX= # empty
|
|
|
|
MAINTAINER= martin.dieringer@gmx.de
|
|
COMMENT= HTML to LaTeX converter, last modified 2010
|
|
|
|
PLIST_FILES= bin/html2tex
|
|
NO_WRKSUBDIR= yes
|
|
|
|
NO_STAGE= yes
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC}/html2tex.c
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} -o html2tex html2tex.c
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${CP} html2tex ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|