mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-07 11:49:40 +00:00
![Bill Fumerola](/assets/img/avatar_default.png)
It was originally created to facilitate the reproduction of tab published in many music magazines and books. It takes as input a file consisting of note information, and builds the tab staffs.
30 lines
651 B
Makefile
30 lines
651 B
Makefile
# New ports collection makefile for: btc
|
|
# Date created: 1 August 2000
|
|
# Whom: Bill Fumerola <billf@chimesnet.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= btc
|
|
PORTVERSION= 258
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.harmony-central.com/Bass/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= billf@FreeBSD.org
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
do-build:
|
|
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c
|
|
|
|
do-install:
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${MKDIR} ${PREFIX}/share/doc/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.doc \
|
|
${PREFIX}/share/doc/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|