mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
c715e8b924
- Enhance MASTER_SITES - Add WWW in pkg-descr - Pass maintainership to submitter PR: ports/84985 Submitted by: Emanuel Haupt <ehaupt@critical.ch>
33 lines
713 B
Makefile
33 lines
713 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= ftp://de.aminet.net/pub/aminet/misc/unix/ \
|
|
ftp://us.aminet.net/pub/aminet/misc/unix/ \
|
|
http://critical.ch/distfiles/
|
|
DISTNAME= ${PORTNAME}.c
|
|
EXTRACT_SUFX= .gz
|
|
|
|
MAINTAINER= ehaupt@critical.ch
|
|
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>
|