> 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" _______________________________________________ Policies and (un)subscribe information available here: http://wiki.secondlife.com/wiki/SLDev Please read the policies before posting to keep unmoderated posting privileges
