diff options
author | pawel <pawel@FreeBSD.org> | 2013-07-15 05:11:16 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2013-07-15 05:11:16 +0800 |
commit | 31fd4d5de491e77b9a02a6345be0030fb1713a3f (patch) | |
tree | 1bda2df99a6de7d568a8cb6ef7f13dfe9dc9f38a /archivers | |
parent | 8b29c0a369b1d5902a941fe8838a207979173b77 (diff) | |
download | freebsd-ports-gnome-31fd4d5de491e77b9a02a6345be0030fb1713a3f.tar.gz freebsd-ports-gnome-31fd4d5de491e77b9a02a6345be0030fb1713a3f.tar.zst freebsd-ports-gnome-31fd4d5de491e77b9a02a6345be0030fb1713a3f.zip |
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 <samm@os2.kiev.ua>
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/qpress/Makefile | 27 | ||||
-rw-r--r-- | archivers/qpress/distinfo | 2 | ||||
-rw-r--r-- | archivers/qpress/pkg-descr | 5 |
4 files changed, 35 insertions, 0 deletions
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 <samm@os2.kiev.ua> +# $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 <bsd.port.mk> 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/ |