linux - Creating a binary package of a compiled library -


i'm running gentoo , have manually compiled , installed flann library. need create binary package extension of .tar.tbz2 has required files. tried installing separate folder , compressing wasn't recognized actual package. (using make install destdir=folder)

my attempt @ file contained usr subdirectory.

additional info: i'm packaging library part of cross-compiling.

add --prefix=pathtoinstall ./configure,then execute make , make install , generate tar pathtoinstall

./configure --prefix=pathtoinstall make make install tar -cjvf flann.tar.bz2 pathtoinstall 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -