mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
71f5306b92
* Drop maintainership while I'm here.
MFH: 2021Q3
(cherry picked from commit a6bf4250d0
)
27 lines
555 B
Makefile
27 lines
555 B
Makefile
# Created by: bsdx
|
|
|
|
PORTNAME= bchunk
|
|
DISTVERSION= 1.2.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://he.fi/bchunk/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Converts .bin/.cue files to .iso/audio
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cpe
|
|
CPE_VENDOR= bchunk_project
|
|
|
|
PLIST_FILES= bin/bchunk man/man1/bchunk.1.gz
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${CC} ${CFLAGS} bchunk.c -o bchunk
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bchunk ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/bchunk.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|