From 31fd4d5de491e77b9a02a6345be0030fb1713a3f Mon Sep 17 00:00:00 2001 From: pawel Date: Sun, 14 Jul 2013 21:11:16 +0000 Subject: qpress is a portable file archiver using QuickLZ and designed to utilize fast storage systems to their max. It's often faster than file copy because the destination is smaller than the source. WWW: http://www.quicklz.com/ PR: ports/180225 Submitted by: Alex Samorukov --- archivers/Makefile | 1 + archivers/qpress/Makefile | 27 +++++++++++++++++++++++++++ archivers/qpress/distinfo | 2 ++ archivers/qpress/pkg-descr | 5 +++++ 4 files changed, 35 insertions(+) create mode 100644 archivers/qpress/Makefile create mode 100644 archivers/qpress/distinfo create mode 100644 archivers/qpress/pkg-descr (limited to 'archivers') diff --git a/archivers/Makefile b/archivers/Makefile index b0446139d127..1afb1e3370b8 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -159,6 +159,7 @@ SUBDIR += py-liblzma SUBDIR += py-librtfcomp SUBDIR += py-lzma + SUBDIR += qpress SUBDIR += quazip SUBDIR += rar SUBDIR += rox-archive diff --git a/archivers/qpress/Makefile b/archivers/qpress/Makefile new file mode 100644 index 000000000000..8377e918a619 --- /dev/null +++ b/archivers/qpress/Makefile @@ -0,0 +1,27 @@ +# Created by: Alex Samorukov +# $FreeBSD$ + +PORTNAME= qpress +PORTVERSION= 1.1 +CATEGORIES= archivers +MASTER_SITES= http://www.quicklz.com/ +DISTNAME= qpress-11-source + +MAINTAINER= samm@os2.kiev.ua +COMMENT= Portable file archiver using QuickLZ + +LICENSE= GPLv2 + +EXTRACT_AFTER_ARGS= -d ${WRKSRC} +USE_ZIP= yes + +PLIST_FILES= bin/qpress + +do-build: + cd ${WRKSRC} && \ + ${CXX} ${CXXFLAGS} -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/qpress ${DESTDIR}${PREFIX}/bin + +.include diff --git a/archivers/qpress/distinfo b/archivers/qpress/distinfo new file mode 100644 index 000000000000..8a8a5d92bd65 --- /dev/null +++ b/archivers/qpress/distinfo @@ -0,0 +1,2 @@ +SHA256 (qpress-11-source.zip) = 4bb66b1383bbc4c5490eec6088d37109e11205fb9f94ccd04cb84ec069829633 +SIZE (qpress-11-source.zip) = 26998 diff --git a/archivers/qpress/pkg-descr b/archivers/qpress/pkg-descr new file mode 100644 index 000000000000..048f796d095f --- /dev/null +++ b/archivers/qpress/pkg-descr @@ -0,0 +1,5 @@ +qpress is a portable file archiver using QuickLZ and designed to utilize fast +storage systems to their max. It's often faster than file copy because the +destination is smaller than the source. + +WWW: http://www.quicklz.com/ -- cgit