I want to intall r.in.kinect
GRASS GIS addon in ubuntu 22.04.
This is the URL: https://github.com/tangible-landscape/r.in.kinect
I cloned the git and then ran the command make MODULE_TOPDIR=../path/to/grass
. (in my case, make MODULE_TOPDIR=/usr/lib/grass82
)
But I encountered the message:
Makefile:10: /usr/lib/grass82/include/Make/Module.make: No such file or directory
make: *** No rule to make target '/usr/lib/grass82/include/Make/Module.make'. Stop.
What should I do? This is my makefile:
MODULE_TOPDIR = ../..
PGM = r.in.kinect
LIBES = $(IMAGERYLIB) $(RASTERLIB) $(INTERPFLLIB) $(QTREELIB) $(QTREEDEP) $(GMATHLIB) $(INTERPDATALIB) $(VECTORLIB) $(DBMILIB) $(GISLIB) $(OMPLIB) -rdynamic -lk4a -lpcl_common -Wl,-Bstatic -lflann_cpp_s -Wl,-Bdynamic -lpcl_io -lpcl_kdtree -lpcl_octree -lpcl_search -lpcl_surface -lpcl_sample_consensus -lpcl_filters -lpcl_features -lpcl_keypoints -lpcl_segmentation -lpcl_tracking -lpthread -lboost_system -Wl,-Bdynamic -ldl -Wl,-rpath,/usr/local/lib
DEPENDENCIES = $(IMAGERYDEP) $(RASTERDEP) $(INTERPFLDEP) $(QTREEDEP) $(INTERPDATADEP) $(GMATHDEP) $(VECTORDEP) $(DBMIDEP) $(GISDEP)
EXTRA_INC = $(VECT_INC) -I/usr/local/include/pcl-1.21 -I/usr/include/eigen3
EXTRA_CFLAGS = -std=c++14 -march=native -Wno-deprecated -O0 $(VECT_CFLAGS) $(OMPCFLAGS)
include $(MODULE_TOPDIR)/include/Make/Module.make
LINK = $(CXX)
ifneq ($(strip $(CXX)),)
default: cmd
endif
This is my first time to use Ubuntu, so I'm very confused. Please help me