diff options
author | yuri <yuri@FreeBSD.org> | 2018-10-29 08:04:39 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-10-29 08:04:39 +0800 |
commit | b749c000031ece0f6c78a57a957dbbcffa697590 (patch) | |
tree | 0f727af24c8f10725986a9eb47d99ceb36576bae /misc/lastools | |
parent | cd677a223ae592b98f3ee1a615e67e5ad1324f12 (diff) | |
download | freebsd-ports-gnome-b749c000031ece0f6c78a57a957dbbcffa697590.tar.gz freebsd-ports-gnome-b749c000031ece0f6c78a57a957dbbcffa697590.tar.zst freebsd-ports-gnome-b749c000031ece0f6c78a57a957dbbcffa697590.zip |
New port: misc/lastools: Efficient tools for LiDAR processing
Diffstat (limited to 'misc/lastools')
-rw-r--r-- | misc/lastools/Makefile | 27 | ||||
-rw-r--r-- | misc/lastools/distinfo | 3 | ||||
-rw-r--r-- | misc/lastools/pkg-descr | 8 |
3 files changed, 38 insertions, 0 deletions
diff --git a/misc/lastools/Makefile b/misc/lastools/Makefile new file mode 100644 index 000000000000..d52fb91537da --- /dev/null +++ b/misc/lastools/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= LAStools +DISTVERSION= g20181019 +CATEGORIES= misc + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Efficient tools for LiDAR processing + +LICENSE= LGPL21 + +USES= gmake +USE_GITHUB= yes +GH_TAGNAME= 8ff2694 + +BINARY_ALIAS= make=gmake g++=${CXX} + +PLIST_FILES= ${EXECUTABLES:S/^/bin\//} + +EXECUTABLES= lasindex las2txt las2las txt2las lasdiff lasinfo laszip lasmerge lasprecision + +do-install: +.for e in ${EXECUTABLES} + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${e} ${STAGEDIR}${PREFIX}/bin +.endfor + +.include <bsd.port.mk> diff --git a/misc/lastools/distinfo b/misc/lastools/distinfo new file mode 100644 index 000000000000..86c0136222fd --- /dev/null +++ b/misc/lastools/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1540770649 +SHA256 (LAStools-LAStools-g20181019-8ff2694_GH0.tar.gz) = 5ea40630be54b84da06b83f67087a19be48c78de5dce3a41c96a469c018fd0c2 +SIZE (LAStools-LAStools-g20181019-8ff2694_GH0.tar.gz) = 46163475 diff --git a/misc/lastools/pkg-descr b/misc/lastools/pkg-descr new file mode 100644 index 000000000000..52e023e362ae --- /dev/null +++ b/misc/lastools/pkg-descr @@ -0,0 +1,8 @@ +LAStools is collection of highly efficient, batch-scriptable, multicore command +line tools. We have tools to classify, tile, convert, filter, raster, +triangulate, contour, clip, and polygonize LiDAR data (to name just a few +functions). All of the tools can also be run via a native GUI and are available +as a LiDAR processing toolboxes for ArcGIS versions 9.3 and up, for QGIS +versions 1.8 and up, and for ERDAS IMAGINE versions 14.0 and up. + +WWW: https://rapidlasso.com/lastools/ |