1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/archivers/unlzx/Makefile
Gabor Kovesdan 42542fb076 - Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.

Sponsored by:	Google Summer of Code 2007
Approved by:	portmgr (pav)
2007-08-04 11:41:30 +00:00

32 lines
662 B
Makefile

# New ports collection makefile for: unlzx
# Date created: Sat 3 June 2000
# Whom: will
#
# $FreeBSD$
#
PORTNAME= unlzx
PORTVERSION= 1.1
CATEGORIES= archivers
MASTER_SITES= http://critical.ch/distfiles/ \
http://energy.critical.ch/distfiles/
DISTNAME= ${PORTNAME}.c
EXTRACT_SUFX= .gz
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Extracts .lzx archives from Amiga systems
PLIST_FILES= bin/unlzx
do-extract:
${MKDIR} ${WRKSRC}
${GZCAT} ${DISTDIR}/${DISTFILES} > ${WRKSRC}/${DISTNAME}
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>