aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/snzip
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2015-12-23 01:11:40 +0800
committersunpoet <sunpoet@FreeBSD.org>2015-12-23 01:11:40 +0800
commit9cc1a71ce8b1ab2ab7536d97b571c5ba3936a95b (patch)
treee7c59bfd5171f910c55c409fe3ed5a3a3859cfaa /archivers/snzip
parentb9f94e8e7340423daa69a227ca5230b445d431ef (diff)
downloadfreebsd-ports-gnome-9cc1a71ce8b1ab2ab7536d97b571c5ba3936a95b.tar.gz
freebsd-ports-gnome-9cc1a71ce8b1ab2ab7536d97b571c5ba3936a95b.tar.zst
freebsd-ports-gnome-9cc1a71ce8b1ab2ab7536d97b571c5ba3936a95b.zip
- 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@gmail.com>
Diffstat (limited to 'archivers/snzip')
-rw-r--r--archivers/snzip/Makefile27
-rw-r--r--archivers/snzip/distinfo2
-rw-r--r--archivers/snzip/pkg-descr10
3 files changed, 39 insertions, 0 deletions
diff --git a/archivers/snzip/Makefile b/archivers/snzip/Makefile
new file mode 100644
index 000000000000..2f35cf04771c
--- /dev/null
+++ b/archivers/snzip/Makefile
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME= snzip
+PORTVERSION= 1.0.2
+CATEGORIES= archivers
+
+MAINTAINER= mizhka@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>
diff --git a/archivers/snzip/distinfo b/archivers/snzip/distinfo
new file mode 100644
index 000000000000..2e90c3272151
--- /dev/null
+++ b/archivers/snzip/distinfo
@@ -0,0 +1,2 @@
+SHA256 (kubo-snzip-1.0.2_GH0.tar.gz) = ec2763e15ca42455a32a53c8eefb92d7a4b8ea2f518a6e04c0f11f86c4924847
+SIZE (kubo-snzip-1.0.2_GH0.tar.gz) = 1754963
diff --git a/archivers/snzip/pkg-descr b/archivers/snzip/pkg-descr
new file mode 100644
index 000000000000..5c2fd93637c8
--- /dev/null
+++ b/archivers/snzip/pkg-descr
@@ -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