site_archiver@lists.apple.com Delivered-To: installer-dev@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:cc:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:mime-version :subject:date:references:x-mailer; bh=WDu8EzUyfO7shAFW94RmTZ6Oa2h/1h26EoTfFbV9OUY=; b=luLbcHApjwV/DHZ67nO/a4RlYsdc190TWrBDk5ME1jp4azXzeMI3KmaZgGmAW584Zg fquVhdpHHd25Dd12ioEQQYsWCcP+rVvyun3LWhduLRdca/y0jqC3qosPcNdLsxJOBeGI qmHJVISzZ/E+yO9A26hAkvDvOiYc57eHx5RzE= Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=cc:message-id:from:to:in-reply-to:content-type :content-transfer-encoding:mime-version:subject:date:references :x-mailer; b=V2X0I9gZZBxwu1brBG9ssZMQXNlZCfrbQJCVNMAiRQOrB7FwKM+Ntaly1y59C24pg1 o5dJcd+VXzBpQIXfk2VWqfcpre7YzJiHMUZZrDK5LNwTANB9s5Nc6uOPND4Z4CDMgjGj NuPcp/p15+SlXqp8jdxtz2V0RUEt76vd4wezM= I think you have to register your instrument pack #<!------------------------- Start Script --------------------------> #!/bin/bash # reindex the audio loops for applications like garageband IFS=$'\n' if [ -d "${LOOPS_LOCATION}/" ]; then for VENDOR in `ls "${LOOPS_LOCATION}/"`; do for PROGRAM in `ls "${LOOPS_LOCATION}/${VENDOR}/"`; do $ALP_PROGRAM "${LOOPS_LOCATION}/${VENDOR}/${PROGRAM}" done done fi $ALP_PROGRAM -p #<!-------------------------- End Script --------------------------> -- Karl Kuehn larkost@softhome.net _______________________________________________ Do not post admin requests to the list. They will be ignored. Installer-dev mailing list (Installer-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/installer-dev/site_archiver%40lists.a... On May 19, 2009, at 11:27 AM, Christian Unger wrote: On 19.05.2009, at 19:43, Sandro Bilbeisi wrote: How to create an installer for GarageBand instrument packs ? /Library/Application\ Support/GarageBand/Package\ Registry.plist I worked through this for our imaged computers (different images have different loops installed on them, and I didn't want to have to keep track of the combinations). My solution was to grab the "ALPIndexer.app" from inside the latest installer (currently GarageBand '09) and run it on all of the folders inside the folders in "/Library/Audio/Apple Loops" (there are two levels, and you have to run on the folders inside the inner level). I don't know if that is really going to help you, since I am within what I consider fair-use on the installer, but you might fall outside of that. Here is the script I use - note that it won't work without having the ALPIndex.app at the correct place: ALP_PROGRAM='/Library/Management/HelperApps/ALPIndex.app/Contents/ MacOS/ALPIndex' LOOPS_LOCATION='/Library/Audio/Apple Loops' This email sent to site_archiver@lists.apple.com