1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/archivers/undms/Makefile
Mathieu Arnold 065c026fe5 Fix ports that confused the meaning of WRKDIR and WRKSRC.
PR:		204056
Submitted by:	mat
Reviewed by:	bapt
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D2735
2015-11-05 12:36:25 +00:00

29 lines
645 B
Makefile

# Created by: will
# $FreeBSD$
PORTNAME= undms
PORTVERSION= 1.3
CATEGORIES= archivers
MASTER_SITES= http://de.aminet.net/pub/aminet/misc/unix/ \
http://se2.aminet.net/pub/aminet/misc/unix/
DISTNAME= ${PORTNAME}-${PORTVERSION}.c
EXTRACT_SUFX= .Z
MAINTAINER= ports@FreeBSD.org
COMMENT= Converts .dms Amiga disk images to uncompressed .adf images
NO_WRKSUBDIR= yes
PLIST_FILES= bin/undms
do-extract:
${MKDIR} ${WRKSRC}
${GZCAT} ${DISTDIR}/${DISTFILES} > ${WRKSRC}/${DISTNAME}
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -o undms undms-1.3.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/undms ${STAGEDIR}/${PREFIX}/bin
.include <bsd.port.mk>