summaryrefslogtreecommitdiff
path: root/archivers/unlzx/Makefile
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-06-03 04:42:52 +0000
committerWill Andrews <will@FreeBSD.org>2000-06-03 04:42:52 +0000
commit66a77726ffb700e0757150e3646711cb61322b4a (patch)
tree7294e818e4e77bbd91c07198c46c87fabb99728c /archivers/unlzx/Makefile
parentAdd the macutil port, which allows us to create and extract archives from (diff)
Add unlzx, an utility which can extract LZX archives from Amiga systems.
Obtained from: NetBSD
Notes
Notes: svn path=/head/; revision=29137
Diffstat (limited to 'archivers/unlzx/Makefile')
-rw-r--r--archivers/unlzx/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/archivers/unlzx/Makefile b/archivers/unlzx/Makefile
new file mode 100644
index 000000000000..186416423c68
--- /dev/null
+++ b/archivers/unlzx/Makefile
@@ -0,0 +1,30 @@
+# New ports collection makefile for: unlzx
+# Date created: Sat 3 June 2000
+# Whom: will
+#
+# $FreeBSD$
+#
+
+PORTNAME= unlzx
+PORTVERSION= 1.0
+CATEGORIES= archivers
+MASTER_SITES= ftp://de.aminet.net/pub/aminet/misc/unix/ \
+ ftp://us.aminet.net/pub/aminet/misc/unix/
+DISTNAME= ${PORTNAME}.c
+EXTRACT_SUFX= .Z
+
+MAINTAINER= will@FreeBSD.org
+
+NO_WRKSUBDIR= yes
+
+do-extract:
+ ${MKDIR} ${WRKDIR}
+ ${GZCAT} ${DISTDIR}/${DISTFILES} > ${WRKDIR}/${DISTNAME}
+
+do-build:
+ cd ${WRKSRC} && ${CC} ${CFLAGS} -o unlzx unlzx.c
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/unlzx ${PREFIX}/bin
+
+.include <bsd.port.mk>