This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class ColorTheme < Formula | |
| url 'http://download.savannah.gnu.org/releases/color-theme/color-theme-6.6.0.tar.gz' | |
| homepage 'http://www.nongnu.org/color-theme/' | |
| md5 'a4de73c236a6af11ab378bfe18dabcca' | |
| # depends_on 'cmake' | |
| def install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Rsync <Formula | |
| url 'http://rsync.samba.org/ftp/rsync/src/rsync-3.0.9.tar.gz' | |
| homepage 'http://rsync.samba.org/' | |
| md5 '5ee72266fe2c1822333c407e1761b92b' | |
| sha1 'c64c8341984aea647506eb504496999fd968ddfc' | |
| def install | |
| system "./configure", "--prefix=#{prefix}", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Org < Formula | |
| url 'http://orgmode.org/org-latest.tar.gz' | |
| homepage 'http://orgmode.org/' | |
| # depends_on 'cmake' | |
| def install | |
| inreplace 'Makefile' do |s| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Wl < Formula | |
| url 'http://www.ring.gr.jp/archives/elisp/wl/stable/wl-2.14.0.tar.gz' | |
| homepage 'http://www.gohome.org/wl/' | |
| depends_on 'emacs' | |
| depends_on 'apel' | |
| depends_on 'flim' | |
| depends_on 'semi' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Ddskk < Formula | |
| homepage 'http://openlab.ring.gr.jp/skk/' | |
| url 'http://openlab.ring.gr.jp/skk/maintrunk/ddskk-15.2.tar.gz' | |
| sha256 '0d334c072a5eb3725173b398fce4839217d53e32c624653b5aca14a008788b9c' | |
| depends_on 'emacs' | |
| def install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # texlive.profile written on Wed Aug 8 05:12:46 2012 UTC | |
| # It will NOT be updated and reflects only the | |
| # installation profile at installation time. | |
| selected_scheme scheme-full | |
| TEXDIR /usr/local/texlive/2012 | |
| TEXMFCONFIG ~/.texlive2012/texmf-config | |
| TEXMFHOME ~/Dropbox/texmf:/usr/local/share/texmf | |
| TEXMFLOCAL /usr/local/texlive/texmf-local | |
| TEXMFSYSCONFIG /usr/local/texlive/2012/texmf-config | |
| TEXMFSYSVAR /usr/local/texlive/2012/texmf-var |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $latex = 'platex -kanji=utf8'; | |
| $bibtex = 'pbibtex -kanji=utf8'; | |
| $dvipdf = 'dvipdfmx %O -o %D %S'; | |
| $pdf_previewer = 'open -a /Applications/Preview.app'; | |
| $pdf_mode = 3; # 3 = create pdf file by dvipdf | |
| $pdf_update_method = 0; # 0 = auto update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Ddskk < Formula | |
| url 'http://openlab.ring.gr.jp/skk/maintrunk/ddskk-14.4.tar.gz' | |
| homepage 'http://openlab.ring.gr.jp/skk/index.html' | |
| md5 '0d6dea59f57fae3a2bfa069b9ecdad68' | |
| def install | |
| open("SKK-CFG", 'a'){|f| f.puts(<<DATA) } | |
| (setq SKK_DATADIR "#{HOMEBREW_PREFIX}/Cellar/ddskk/share") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'formula' | |
| class Org < Formula | |
| url 'http://orgmode.org/org-7.9.3e.tar.gz' | |
| homepage 'http://orgmode.org/' | |
| # depends_on 'cmake' | |
| def install | |
| system "make help config" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <iomanip> | |
| #include <sstream> | |
| #include <time.h> | |
| using namespace std; | |
| int main(int argc, char *argv[] ) { | |
| int i, max_itr; | |
| double *val, sum, t1, t2, a, x0; | |
| stringstream ss; |