<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techline 4 Teens &#187; apple developer</title>
	<atom:link href="http://techline4teens.com/archives/category/apple-developer/feed" rel="self" type="application/rss+xml" />
	<link>http://techline4teens.com</link>
	<description>Your Lifeline In A Technological World</description>
	<lastBuildDate>Wed, 17 Mar 2010 19:57:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>APT-GET FOR MAC!?!?</title>
		<link>http://techline4teens.com/archives/81</link>
		<comments>http://techline4teens.com/archives/81#comments</comments>
		<pubDate>Tue, 20 Oct 2009 22:59:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apple developer]]></category>

		<guid isPermaLink="false">http://techline4teens.com/?p=81</guid>
		<description><![CDATA[Apt-get is a linux command that allows you to instantly install software. For example if you were running linux, the command: sudo apt-get install firefox would install Firefox Web Browser. For a while, I had thought that this functionality was removed in Mac OSX, luckily this is not the case. There are two ways to [...]]]></description>
			<content:encoded><![CDATA[<p>Apt-get is a linux command that allows you to instantly install software. For example if you were running linux, the command:</p>
<blockquote><p>sudo apt-get install firefox</p></blockquote>
<p>would install <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox Web Browser</a>. For a while, I had thought that this functionality was removed in Mac OSX, luckily this is not the case.<br />
There are two ways to get apt-get on your mac!</p>
<p>Option 1: FINK</p>
<ol>
<li><a href="http://www.finkproject.org/download/index.php?phpLang=en">Download Fink</a></li>
<li>Open the installer package and install</li>
</ol>
<p>Now you can install packages by typing:</p>
<blockquote><p>sudo apt-get install name-of-app</p></blockquote>
<p>Method 2: PORT</p>
<ol>
<li>Install XCode (If you run PPC, the last version for you can be found <a href="http://techline4teens.com/archives/50">here</a>.)</li>
</ol>
<p>That&#8217;s it, you can run it by using the command &#8220;port&#8221; instead of &#8220;apt-get&#8221;. For example:</p>
<blockquote><p>sudo port libpng</p></blockquote>
<p>If you want to install multiple applications at the same time, you can make a list, like so:</p>
<blockquote><p>sudo port libpng libjpeg fontforge liquidwar gimp</p></blockquote>
<p>which would obviously install libpng, libjpeg, fontforge, and gimp!</p>
]]></content:encoded>
			<wfw:commentRss>http://techline4teens.com/archives/81/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Build Open-Source Software</title>
		<link>http://techline4teens.com/archives/66</link>
		<comments>http://techline4teens.com/archives/66#comments</comments>
		<pubDate>Fri, 16 Oct 2009 19:49:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apple developer]]></category>
		<category><![CDATA[apple pro]]></category>

		<guid isPermaLink="false">http://techline4teens.com/?p=66</guid>
		<description><![CDATA[So you come across some open source software, and it says something like &#8220;Mac binaries are not available right now, there might be some binaries available at&#8230;&#8221; And of course the binaries (term for mac applications commonly used in the term &#8220;Universal Binary&#8221; meaning an application that runs on PPC and Intel Macs) are like [...]]]></description>
			<content:encoded><![CDATA[<p>So you come across some open source software, and it says something like &#8220;Mac binaries are not available right now, there might be some binaries available at&#8230;&#8221; And of course the binaries (term for mac applications commonly used in the term &#8220;Universal Binary&#8221; meaning an application that runs on PPC and Intel Macs) are like 2 years old. No No, that wont do will it, we cant have old software. Well, you&#8217;re in luck, it is OPEN-SOURCE, that means that you can build it from the source.</p>
<p>Materials Needed:<br />
XCode (for a leopard compatible version see <a href="http://techline4teens.com/archives/50">this</a> post)<br />
The Source for the Software (for this example I&#8217;ll use <a href="http://www.mplayerhq.hu/MPlayer/releases/mplayer-export-snapshot.tar.bz2">mencoder</a><br />
Terminal (found /Applications/Utilities/Terminal.app)</p>
<p>Steps:<br />
1) Find the source archive (mine is named mplayer-export-snapshot-1.tar.bz2) and extract it to a folder (just double click on it)<br />
2) Open Terminal<br />
3) Find the folder with the source in Finder (mine is called mplayer-export-2009-10-16) click once on the folder and hit CMD+C (or apple-c if you are running PPC)<br />
4) Now go into the terminal and type &#8220;cd&#8221; (without quotes) then hit SPACE, then CMD+V, (when I hit CMD+V I had &#8220;cd cd /Users/Admin/Downloads/mplayer-export-2009-10-16&#8243;)<br />
5) type in &#8220;./configure&#8221; (without quotes) you&#8217;ll get some output which you can probably ignore.<br />
6) now type &#8220;make&#8221; (without quotes), this will take a very long time, you should probably go somewhere else while you wait.)<br />
7) finally type &#8220;sudo make install&#8221; it will ask you for a password, type it in (the letters won&#8217;t appear as you type them). It will install the package, and you&#8217;ll be done!</p>
<p>Note: If you chose to try compiling mencoder, then you can test it by typing &#8220;mencoder&#8221; into the terminal, if it worked, you&#8217;ll get something like &#8220;MEncoder SVN-r29770-snapshot-4.0.1 (C) 2000-2009 MPlayer Team<br />
No file given</p>
<p>Exiting&#8230; (error parsing command line)&#8221; but with a different version, (unless you downloaded it today)</p>
]]></content:encoded>
			<wfw:commentRss>http://techline4teens.com/archives/66/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oh No! I Need XCode</title>
		<link>http://techline4teens.com/archives/50</link>
		<comments>http://techline4teens.com/archives/50#comments</comments>
		<pubDate>Fri, 16 Oct 2009 00:25:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[apple developer]]></category>

		<guid isPermaLink="false">http://techline4teens.com/?p=50</guid>
		<description><![CDATA[Hey, if you run a PPC mac, then you probably know that you cannot run Snow Leopard. Well, who cares right, we don&#8217;t need that, right&#8230; WRONG! The new version of XCode requires Snow Leopard to be installed, AND YOU CAN NO LONGER FIND THE OLD FILE ANYWHERE on Apple&#8217;s dev. site. Fear not, because [...]]]></description>
			<content:encoded><![CDATA[<p>Hey, if you run a PPC mac, then you probably know that you cannot run Snow Leopard. Well, who cares right, we don&#8217;t need that, right&#8230; WRONG! The new version of XCode requires Snow Leopard to be installed, AND YOU CAN NO LONGER FIND THE OLD FILE ANYWHERE on Apple&#8217;s dev. site. Fear not, because I have a wonderful little link that can solve all of your troubles, but you&#8217;ll have to sign into your FREE apple developer account to download it.</p>
<p><a href="http://adcdownload.apple.com/Developer_Tools/xcode_3.1.3_developer_tools/xcode313_2736_developerdvd.dmg">I Want My XCode</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techline4teens.com/archives/50/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
