PEARの履歴
個別にインストールする方法
Ethnaにはpear-localというのがあるらしい。
某所で使ったインストール用スクリプト
config=$(pwd)/.pearrc target=$(pwd)/common/library function pearc() { pear -c $config $@ } if [ -e $config ]; then echo "exist $config" else pear config-create $target $config pearc config-set cache_dir /tmp/pear/cache pearc config-set download_dir /tmp/pear/cache pearc config-set temp_dir /tmp/pear/temp pearc channel-update pear.php.net pearc -a install PEAR fi pearc -a install packages/you/wanted