blob: 53d4d7e9e6b8a785925ed3e1ebe5ffe733430445 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: bas2tap
# Date created: 2007-06-26
# Whom: Rene Ladan <r.c.ladan@gmail.com>
#
# $FreeBSD$
#
PORTNAME= bas2tap
PORTVERSION= 2.4
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
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>
|