Difference between revisions of "Build 3rd Party lib with Autobuild"

From Second Life Wiki
Jump to navigation Jump to search
(Simple instruction to build a 3rd party lib)
 
Line 7: Line 7:
  hg clone ssh://hg@bitbucket.org/lindenlab/3p-xxx 3p-xxx
  hg clone ssh://hg@bitbucket.org/lindenlab/3p-xxx 3p-xxx
  cd 3p-xxx
  cd 3p-xxx
# download any dependencies for the package
autobuild configure
  # build the library locally
  # build the library locally
  autobuild build
  autobuild build
  # package the library locally
  # package the library locally
  autobuild package
  autobuild package

Revision as of 08:43, 4 March 2013

Building a 3rd Party Library Package from LL Repository

# Install the autobuild scripts
# For more complete details on this : https://wiki.secondlife.com/wiki/Autobuild
hg clone ssh://hg@bitbucket.org/lindenlab/autobuild autobuild
export PATH="$PATH:$(pwd)/autobuild/bin"
# Clone the 3rd party repo you need to repackage
hg clone ssh://hg@bitbucket.org/lindenlab/3p-xxx 3p-xxx
cd 3p-xxx
# download any dependencies for the package
autobuild configure 
# build the library locally
autobuild build
# package the library locally
autobuild package