Import laszip 3.4.3.

LASzip quickly turns bulky LAS files into compact LAZ files without
information loss and is the de-facto standard for LiDAR compression.

LASzip compression can be many times smaller and many times faster than
generic compressors like bz2, gzip, and rar because it knows what the
different bytes in a LAS file represent.

with tweaks from & ok sthen@ jca@
This commit is contained in:
landry 2020-03-23 13:15:22 +00:00
parent 6686e1f7f4
commit 050656e90d
4 changed files with 47 additions and 0 deletions

30
archivers/laszip/Makefile Normal file
View File

@ -0,0 +1,30 @@
# $OpenBSD: Makefile,v 1.1.1.1 2020/03/23 13:15:22 landry Exp $
COMMENT = lossless LiDAR compression
V = 3.4.3
DISTNAME = laszip-src-${V}
PKGNAME = laszip-${V}
SHARED_LIBS = laszip 0.0 \
laszip_api 0.0 # 8.0.5
CATEGORIES = converters textproc archivers
HOMEPAGE = https://laszip.org/
# LGPLv2.1
PERMIT_PACKAGE = Yes
WANTLIB += m ${COMPILER_LIBCXX}
MASTER_SITES = https://github.com/LASzip/LASzip/releases/download/${V}/
#c++11
COMPILER = base-clang ports-gcc
MODULES = devel/cmake
NO_TEST = Yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (laszip-src-3.4.3.tar.gz) = U/VGp/BvyWmzjR1xzOsYYrT8LEoJZRkaDu6BpXx7Nz0=
SIZE (laszip-src-3.4.3.tar.gz) = 219534

View File

@ -0,0 +1,9 @@
LASzip quickly turns bulky LAS files into compact LAZ files without
information loss and is the de-facto standard for LiDAR compression.
LASzip compression can be many times smaller and many times faster than
generic compressors like bz2, gzip, and rar because it knows what the
different bytes in a LAS file represent. Another advantage of LASzip is
that it allows you to treat compressed LAZ files just like standard LAS
files. You can load them directly from compressed form into your
application without needing to decompress them onto disk first.

View File

@ -0,0 +1,6 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2020/03/23 13:15:22 landry Exp $
include/laszip/
include/laszip/laszip_api.h
include/laszip/laszip_api_version.h
@lib lib/liblaszip.so.${LIBlaszip_VERSION}
@lib lib/liblaszip_api.so.${LIBlaszip_api_VERSION}