Skip to content

Instantly share code, notes, and snippets.

@stefanschmidt
Forked from woahdae/r_app.rb
Last active December 24, 2015 18:19

Revisions

  1. stefanschmidt renamed this gist Dec 3, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. stefanschmidt revised this gist Oct 5, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions r_app.rb
    Original file line number Diff line number Diff line change
    @@ -14,6 +14,7 @@ class RApp < Formula
    def install
    # R.app has its R framework path hardcoded. I wouldn't hardcode brew's R
    # framework path either if I could find a way to get the path to it.
    # This won't execute in Homebrew, so just create the link manually
    if !File.exist?("/Library/Frameworks/R.framework")
    ln_s "#{HOMEBREW_PREFIX}/Cellar/r/3.0.1/R.framework",
    "/Library/Frameworks/R.framework"
  3. stefanschmidt revised this gist Oct 5, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion r_app.rb
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,7 @@ def install
    # R.app has its R framework path hardcoded. I wouldn't hardcode brew's R
    # framework path either if I could find a way to get the path to it.
    if !File.exist?("/Library/Frameworks/R.framework")
    ln_s "#{HOMEBREW_PREFIX}/cellar/r/3.0.1/R.framework",
    ln_s "#{HOMEBREW_PREFIX}/Cellar/r/3.0.1/R.framework",
    "/Library/Frameworks/R.framework"
    end

  4. stefanschmidt revised this gist Oct 5, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion r_app.rb
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@

    class RApp < Formula
    ARCHS = "x86_64"
    SYSTEM = "MountainLion"
    SYSTEM = "SnowLeopard64"

    url 'http://cran.r-project.org/bin/macosx/Mac-GUI-1.62.tar.gz'
    homepage 'http://cran.r-project.org/bin/macosx/'
  5. stefanschmidt revised this gist Oct 5, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion r_app.rb
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,7 @@ def install
    # R.app has its R framework path hardcoded. I wouldn't hardcode brew's R
    # framework path either if I could find a way to get the path to it.
    if !File.exist?("/Library/Frameworks/R.framework")
    ln_s "#{HOMEBREW_PREFIX}/cellar/r/3.0.1/R.framework/",
    ln_s "#{HOMEBREW_PREFIX}/cellar/r/3.0.1/R.framework",
    "/Library/Frameworks/R.framework"
    end

  6. stefanschmidt revised this gist Oct 5, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion r_app.rb
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,7 @@ def install
    # R.app has its R framework path hardcoded. I wouldn't hardcode brew's R
    # framework path either if I could find a way to get the path to it.
    if !File.exist?("/Library/Frameworks/R.framework")
    ln_s "#{HOMEBREW_PREFIX}/Cellar/r/2.12.2/R.framework",
    ln_s "#{HOMEBREW_PREFIX}/cellar/r/3.0.1/R.framework/",
    "/Library/Frameworks/R.framework"
    end

  7. stefanschmidt revised this gist Oct 5, 2013. 1 changed file with 3 additions and 5 deletions.
    8 changes: 3 additions & 5 deletions r_app.rb
    Original file line number Diff line number Diff line change
    @@ -1,14 +1,12 @@
    require 'formula'

    class RApp < Formula
    # i386 or x86_64
    ARCHS = "x86_64"
    # Leopard, Leopard64, SnowLeopard
    SYSTEM = "SnowLeopard"
    SYSTEM = "MountainLion"

    url 'http://cran.r-project.org/bin/macosx/Mac-GUI-1.36.tar.gz'
    url 'http://cran.r-project.org/bin/macosx/Mac-GUI-1.62.tar.gz'
    homepage 'http://cran.r-project.org/bin/macosx/'
    md5 '671b916ee3d1c42253541b4addb292c2'
    sha1 '3f7ef605076cf537b304a05d979ae44d3cb054ab'
    keg_only "This is a gui app (and a brew antipattern as such, but whatev)"

    depends_on 'r'
  8. @woahdae woahdae created this gist Feb 26, 2011.
    29 changes: 29 additions & 0 deletions r_app.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    require 'formula'

    class RApp < Formula
    # i386 or x86_64
    ARCHS = "x86_64"
    # Leopard, Leopard64, SnowLeopard
    SYSTEM = "SnowLeopard"

    url 'http://cran.r-project.org/bin/macosx/Mac-GUI-1.36.tar.gz'
    homepage 'http://cran.r-project.org/bin/macosx/'
    md5 '671b916ee3d1c42253541b4addb292c2'
    keg_only "This is a gui app (and a brew antipattern as such, but whatev)"

    depends_on 'r'

    def install
    # R.app has its R framework path hardcoded. I wouldn't hardcode brew's R
    # framework path either if I could find a way to get the path to it.
    if !File.exist?("/Library/Frameworks/R.framework")
    ln_s "#{HOMEBREW_PREFIX}/Cellar/r/2.12.2/R.framework",
    "/Library/Frameworks/R.framework"
    end

    system "xcodebuild -target R -configuration #{SYSTEM} -project R.xcodeproj"+
    " ARCHS=#{ARCHS}"

    mv "build/#{SYSTEM}/R.app", "/Applications/R.app"
    end
    end