diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-24 19:07:38 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-24 19:07:38 +0000 |
commit | 53f517fce85d0d774614ad6cf2653235a9467d9c (patch) | |
tree | 5a25f06e8dddce4b433c96749a6d9ec6e5e06a7a /audio/btc | |
parent | f9dd74aaa3fda69c43349903720373c190ed24f4 (diff) |
Notes
Diffstat (limited to 'audio/btc')
-rw-r--r-- | audio/btc/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/audio/btc/Makefile b/audio/btc/Makefile index ebc4b41f99a4..15b950b6f8e6 100644 --- a/audio/btc/Makefile +++ b/audio/btc/Makefile @@ -12,22 +12,17 @@ COMMENT= Tool for creating bass tablature WRKSRC= ${WRKDIR} -NO_STAGE= yes PLIST_FILES= bin/btc PORTDOCS= btc.doc OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - do-build: ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.doc ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.doc ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |