svn commit: r404258 - in head/archivers: . snzip

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Tue Dec 22 17:11:42 UTC 2015


Author: sunpoet
Date: Tue Dec 22 17:11:40 2015
New Revision: 404258
URL: https://svnweb.freebsd.org/changeset/ports/404258

Log:
  - Add snzip 1.0.2
  - While I'm here:
    - Add LICENSE_FILE
    - Add OPTIONS_DEFINE
  
  Snzip is one of command line tools using snappy. This supports five types of
  file formats:
    framing-format,
    old framing-format,
    SNZ format,
    snappy-java format
    and snappy-in-java format.
  The default format is framing-format.
  
  WWW: https://github.com/kubo/snzip
  
  PR:		205511
  Submitted by:	<mizhka at gmail.com>

Added:
  head/archivers/snzip/
  head/archivers/snzip/Makefile   (contents, props changed)
  head/archivers/snzip/distinfo   (contents, props changed)
  head/archivers/snzip/pkg-descr   (contents, props changed)
Modified:
  head/archivers/Makefile

Modified: head/archivers/Makefile
==============================================================================
--- head/archivers/Makefile	Tue Dec 22 17:04:52 2015	(r404257)
+++ head/archivers/Makefile	Tue Dec 22 17:11:40 2015	(r404258)
@@ -189,6 +189,7 @@
     SUBDIR += sharutils
     SUBDIR += snappy
     SUBDIR += snappy-java
+    SUBDIR += snzip
     SUBDIR += squeeze
     SUBDIR += squsq
     SUBDIR += stuffit

Added: head/archivers/snzip/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/snzip/Makefile	Tue Dec 22 17:11:40 2015	(r404258)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	snzip
+PORTVERSION=	1.0.2
+CATEGORIES=	archivers
+
+MAINTAINER=	mizhka at gmail.com
+COMMENT=	Compression/decompression tool based on snappy library
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libsnappy.so:${PORTSDIR}/archivers/snappy
+
+OPTIONS_DEFINE=	DOCS
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	kubo
+
+USES=		autoreconf
+CONFIGURE_ARGS=	--with-snappy=${LOCALBASE}
+GNU_CONFIGURE=	yes
+
+PLIST_FILES=	bin/snzip
+PORTDOCS=	*
+
+.include <bsd.port.mk>

Added: head/archivers/snzip/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/snzip/distinfo	Tue Dec 22 17:11:40 2015	(r404258)
@@ -0,0 +1,2 @@
+SHA256 (kubo-snzip-1.0.2_GH0.tar.gz) = ec2763e15ca42455a32a53c8eefb92d7a4b8ea2f518a6e04c0f11f86c4924847
+SIZE (kubo-snzip-1.0.2_GH0.tar.gz) = 1754963

Added: head/archivers/snzip/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/archivers/snzip/pkg-descr	Tue Dec 22 17:11:40 2015	(r404258)
@@ -0,0 +1,10 @@
+Snzip is one of command line tools using snappy. This supports five types of 
+file formats:
+  framing-format,
+  old framing-format,
+  SNZ format,
+  snappy-java format
+  and snappy-in-java format. 
+The default format is framing-format.
+
+WWW: https://github.com/kubo/snzip


More information about the svn-ports-head mailing list