that is strange, if you are unzipping the proper one and changing to the nitoTV take three folder ./installme should no longer have "installer -pkg nitoTV.pkg -target /" this line in it (i just downloaded it myself to double check and that line definitely isnt in there)
this installme script should look like this in side
Code:
#!/bin/sh
if [ `id -u` != '0' ] ; then
echo "You must use sudo to run this command."
exit 1
fi
mount -uw /
if [ ! -e "/usr/bin/gzip" ]; then
/bin/cp resources/gzip /usr/bin/gzip
/bin/chmod +x /usr/bin/gzip
fi
if [ ! -e "/usr/bin/gunzip" ]; then
/bin/cp resources/gunzip /usr/bin/gunzip
/bin/chmod +x /usr/bin/gunzip
fi
rm -rf /Library/Receipts/nitoTV.pkg/
tar fxpz nitoTV.tar.gz -C /
mount -ur /
echo "Restarting Finder..."
kill `ps awwx | grep [F]inder | awk '{print $1}'`
open /System/Library/CoreServices/Finder.app and the listing of the folder nitoTV Take Three should look like this
Code:
-bash-2.05b$ ls -al
total 38136
drwxr-xr-x 8 frontrow frontrow 272 Nov 2 00:19 .
drwxr-xr-x 33 frontrow frontrow 1122 Nov 6 10:00 ..
-rw-r--r-- 1 frontrow frontrow 6148 Oct 24 2008 .DS_Store
-rw-r--r-- 1 frontrow frontrow 30380 Nov 2 00:19 About.txt
-rw-r--r-- 1 frontrow frontrow 1673 Nov 1 23:46 Install Instructions.rtf
-rwxr-xr-x 1 frontrow frontrow 551 Nov 1 23:45 installme
-rw-r--r-- 1 frontrow frontrow 19474923 Nov 2 00:17 nitoTV.tar.gz
drwxr-xr-x 4 frontrow frontrow 136 Nov 1 23:11 resources
if this isnt how it looks for you, you should delete that folder, download a fresh copy and copy it back over. we had to stop using the /usr/sbin/installer in 3.0 because apple decided it would be a good idea to put in a busted version of JavaScriptCore/Glue and WebkitCore/WebKit frameworks that broke the installer binary so we had to resort to using a tar.gz file for the install process.
Bookmarks