[sldev] Build procedure for viewer from svn trunk?

Johnnie Carling johnniecarling at gmail.com
Sat Mar 21 21:46:33 PDT 2009


> Where are the artwork files that match with the trunc viewer?  What is
> the appropriate procedure to build the viewer from svn trunk?

You can find the URLs in /doc/asset_urls.txt

I use a bash script to grab them (mostly taken from one of Henri's scripts)


#!/bin/bash

PATH_TO_SOURCES="/home/johnnie/projects/secondlife/trunk"

chmod +x $PATH_TO_SOURCES/doc/asset_urls.txt
. $PATH_TO_SOURCES/doc/asset_urls.txt

echo "Removing old downloaded packages....."

# clean up old downloaded packages
rm -fr linden/
rm -f slviewer-artwork*
rm -f slviewer-*-libs*

echo "done"

# Download new artwork and libs
echo "Downloading new artwork and lib packages"
wget $SLASSET_ART
wget $SLASSET_LIBS_LINUXI386
unzip slviewer-artwork*
tar -xvzf slviewer-*-libs*
echo "done"

echo "Copying to source directory"
cp linden/* $PATH_TO_SOURCES/ -r
echo "done"

echo "finished"


More information about the SLDev mailing list