diff options
author | will <will@FreeBSD.org> | 2000-06-03 04:42:52 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-06-03 04:42:52 +0000 |
commit | 1ec9e3d9817795ce6dadf82a60b481513b79ef3a (patch) | |
tree | 061a76d8b24fb3777af26f68655a172f118f0a4e /archivers | |
parent | 4c121de9cf78d9b0a3811494652a005f97691113 (diff) | |
download | FreeBSD-ports-1ec9e3d9817795ce6dadf82a60b481513b79ef3a.zip FreeBSD-ports-1ec9e3d9817795ce6dadf82a60b481513b79ef3a.tar.gz |
Add unlzx, an utility which can extract LZX archives from Amiga systems.
Obtained from: NetBSD
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/unlzx/Makefile | 30 | ||||
-rw-r--r-- | archivers/unlzx/distinfo | 1 | ||||
-rw-r--r-- | archivers/unlzx/pkg-comment | 1 | ||||
-rw-r--r-- | archivers/unlzx/pkg-descr | 2 | ||||
-rw-r--r-- | archivers/unlzx/pkg-plist | 1 |
6 files changed, 36 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 5d3ab41..6018101 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -24,6 +24,7 @@ SUBDIR += rar SUBDIR += unace SUBDIR += unarj + SUBDIR += unlzx SUBDIR += unrar SUBDIR += unzip SUBDIR += zip diff --git a/archivers/unlzx/Makefile b/archivers/unlzx/Makefile new file mode 100644 index 0000000..1864164 --- /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> diff --git a/archivers/unlzx/distinfo b/archivers/unlzx/distinfo new file mode 100644 index 0000000..c56f93c --- /dev/null +++ b/archivers/unlzx/distinfo @@ -0,0 +1 @@ +MD5 (unlzx.c.Z) = 897f018f175b0e9f5d2b9d75eadd4fa8 diff --git a/archivers/unlzx/pkg-comment b/archivers/unlzx/pkg-comment new file mode 100644 index 0000000..05cd538 --- /dev/null +++ b/archivers/unlzx/pkg-comment @@ -0,0 +1 @@ +Extracts .lzx archives from Amiga systems diff --git a/archivers/unlzx/pkg-descr b/archivers/unlzx/pkg-descr new file mode 100644 index 0000000..71ce99c --- /dev/null +++ b/archivers/unlzx/pkg-descr @@ -0,0 +1,2 @@ +This package includes unlzx, an unarchiver for the Amiga LZX file archive +format. diff --git a/archivers/unlzx/pkg-plist b/archivers/unlzx/pkg-plist new file mode 100644 index 0000000..bd0f51a --- /dev/null +++ b/archivers/unlzx/pkg-plist @@ -0,0 +1 @@ +bin/unlzx |