1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/lang/bas2tap/Makefile
Rene Ladan 472a12040e - update to 2.5
- add LICENSE, now licensed under GPLv2 instead of custom license
- pkg-descr: add WWW and remove my email address
2010-08-27 16:12:08 +00:00

38 lines
813 B
Makefile

# New ports collection makefile for: bas2tap
# Date created: 2007-06-26
# Whom: Rene Ladan <r.c.ladan@gmail.com>
#
# $FreeBSD$
#
PORTNAME= bas2tap
PORTVERSION= 2.5
CATEGORIES= lang
MASTER_SITES= ftp://ftp.worldofspectrum.org/pub/sinclair/tools/generic/
DISTNAME= ${PORTNAME}${PORTVERSION:C/\.//}-generic
MAINTAINER= rene@FreeBSD.org
COMMENT= Convert 48k/128k ZX Spectrum BASIC text files to TAP files
LICENSE= GPLv2
USE_ZIP= yes
NO_WRKSUBDIR= yes
PORTDOCS= ${PORTNAME}.doc
PLIST_FILES= bin/${PORTNAME}
do-build:
${CC} ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME} -lm ${CFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.ifndef NOPORTDOCS
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>