LASzip is a compression library for compressing ASPRS LAS format data. It has
been provided as an LGPL-licensed stand-alone software library to allow other softwares that handle LAS data to read and write LASzip-compressed data. The BSD-licensed libLAS and the LGPL-licensed LASlib can take advantage of LASzip to read and write compressed data. LASzip is completely lossless. It compresses bulky LAS files into compact LAZ files that are only 10-20 percent of the original size, accurately preserving every single bit. PR: ports/163956 Submitted by: Rainer Hurling <rhurlin@gwdg.de> Approved by: glarkin@ (mentor)
This commit is contained in:
parent
6365354a9b
commit
88db743951
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288974
5 changed files with 49 additions and 0 deletions
|
@ -47,6 +47,7 @@
|
|||
SUBDIR += kbackup
|
||||
SUBDIR += kio_p7zip
|
||||
SUBDIR += kzip
|
||||
SUBDIR += laszip
|
||||
SUBDIR += lbrate
|
||||
SUBDIR += lbzip2
|
||||
SUBDIR += lcab
|
||||
|
|
25
archivers/laszip/Makefile
Normal file
25
archivers/laszip/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: laszip
|
||||
# Date created: 09 January 2012
|
||||
# Whom: Rainer Hurling <rhurlin@gwdg.de>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= laszip
|
||||
PORTVERSION= 2.1.0
|
||||
CATEGORIES= archivers
|
||||
MASTER_SITES= http://download.osgeo.org/laszip/
|
||||
|
||||
MAINTAINER= rhurlin@gwdg.de
|
||||
COMMENT= A library for lossless LAS compression
|
||||
|
||||
LICENSE= LGPL3
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_CMAKE= yes
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
CMAKE_DEFS+= -DCMAKE_USE_PTHREADS:BOOL=ON
|
||||
|
||||
post-install:
|
||||
@${LN} -s ${PREFIX}/lib/liblaszip.so.5.0.0 ${PREFIX}/lib/liblaszip.so.5
|
||||
|
||||
.include <bsd.port.mk>
|
2
archivers/laszip/distinfo
Normal file
2
archivers/laszip/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (laszip-2.1.0.tar.gz) = 9740d5fa081eb0002d502c484494778a3a1771aa5ceeb8493fbd3465ae6db731
|
||||
SIZE (laszip-2.1.0.tar.gz) = 660529
|
11
archivers/laszip/pkg-descr
Normal file
11
archivers/laszip/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
LASzip is a compression library for compressing ASPRS LAS format data. It has
|
||||
been provided as an LGPL-licensed stand-alone software library to allow other
|
||||
softwares that handle LAS data to read and write LASzip-compressed data. The
|
||||
BSD-licensed libLAS and the LGPL-licensed LASlib can take advantage of LASzip to
|
||||
read and write compressed data.
|
||||
|
||||
LASzip is completely lossless. It compresses bulky LAS files into compact LAZ
|
||||
files that are only 10-20 percent of the original size, accurately preserving
|
||||
every single bit.
|
||||
|
||||
WWW: http://laszip.org/
|
10
archivers/laszip/pkg-plist
Normal file
10
archivers/laszip/pkg-plist
Normal file
|
@ -0,0 +1,10 @@
|
|||
bin/laszip-config
|
||||
bin/laszippertest
|
||||
include/laszip/lasunzipper.hpp
|
||||
include/laszip/laszip.hpp
|
||||
include/laszip/laszipexport.hpp
|
||||
include/laszip/laszipper.hpp
|
||||
lib/liblaszip.so
|
||||
lib/liblaszip.so.5
|
||||
lib/liblaszip.so.5.0.0
|
||||
@dirrm include/laszip
|
Loading…
Reference in a new issue