2013年7月31日水曜日

AppStoreのリンクを作る方法

とっても便利な下記のサイトを利用する。
アプリリンクジェネレータ

例えばEvernoteであれば↓のようなリンクを作ることができる。
Evernote
Evernote(無料)
販売元:Evernote(36MB)
カテゴリ:Productivity
全てのバージョンの評価:★★★★☆(680件の評価)

いくつかスタイルを選択でき、QRコードも生成できるみたい。

2013年7月28日日曜日

Mountain LionにHomebrewをインストール

Mac OS X Mountain LionにHomebrewをインストールする手順。

1. XCodeのインストール

AppStoreからXCodeをインストールする。1GB以上あるので、気長に待つ。
Apple
Xcode(無料)
販売元:Apple(1573MB)
全てのバージョンの評価:★★★★☆(160件の評価)

その後、メニューXCode→Preferencesを選択し、Command Line Toolsをインストールする


2.Homebrewインストール

Homebrewのホームページに記載されている通りで問題ないはず。
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
その後、以下をしておく。
brew doctor

以降は、
brew update
で、Formulaeの追加・更新を行う。

brew upgrade
で、パッケージのアップグレードを実施する。

2013年7月27日土曜日

keg-onlyなパッケージはシンボリックリンクが作られない

Homebrew は使いやすいパッケージマネジャーだが、brew install しただけでは使えないものがありはまってしまったのでメモ。
例えば、sqlite3 の場合、brew info で確認すると、

$ brew info sqlite
sqlite: stable 3.7.15.2
http://sqlite.org/

This formula is keg-only.
Mac OS X already provides this software and installing another version in
parallel can cause all kinds of trouble.

OS X already provides (an older) sqlite3.

Depends on: readline
/usr/local/Cellar/sqlite/3.7.15.2 (9 files, 1.9M) *
https://github.com/mxcl/homebrew/commits/master/Library/Formula/sqlite.rb
==> Options
--universal
 Build a universal binary
--with-docs
 Install HTML documentation
--with-fts
 Enable the FTS module
--with-functions
 Enable more math and string functions for SQL queries
--without-readline
 Build without readline support
--without-rtree
 Disable the R*Tree index module


keg-only の場合、せっかく brew install しても、/usr/local/bin 等にシンボリックリンクが作られない。
これを解決するには、brew link する。
$ brew link sqlite --force
Linking /usr/local/Cellar/sqlite/3.7.15.2... 9 symlinks created
これで、シンボリックリンクが作成され、brew install したパッケージが利用できる。

ちなみに、「--force」を付けないと
$brew link sqlite
Warning: sqlite is keg-only and must be linked with --force
Note that doing so can interfere with building software.

と怒られ、作成されない。

[2013/07/29]追記
上記では対応出来ないものもあるみたい。
gitを上記方法でやってもbrewのgitを見てくれない。
$ git --version
git version 1.7.12.4 (Apple Git-37)
$ which git
/usr/bin/git
$ ls -l /usr/bin/git
-rwxr-xr-x  1 root  wheel  2824288  7 14 17:58 /usr/bin/git
ls -l /usr/local/bin/git
lrwxr-xr-x  1 hogehoge  admin  29  7 28 20:01 /usr/local/bin/git -> ../Cellar/git/1.8.3.4/bin/git
/usr/binにあるgitが優先されてる模様。

/etc/pathsをviして、対応。
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/bin

/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
に変更。ターミナル再起動でようやく
$ git --version
git version 1.8.3.4
となった!

もしくは、~/.bash_profile に
export PATH=/usr/local/bin:$PATH
を記載でも良い。