This file contains 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
#!/bin/bash | |
# If you're reading this on the GitHub gist, scroll down for instructions. | |
# If not, go to https://gist.github.com/1071034 | |
eclipse_url="http://mirror.cc.columbia.edu/pub/software/eclipse/technology/epp/downloads/release/mars/R/eclipse-cpp-mars-R-linux-gtk-x86_64.tar.gz" | |
eclipse_bin="#!/bin/sh | |
export ECLIPSE_HOME='/opt/eclipse' | |
\$ECLIPSE_HOME/eclipse \$*" |
This file contains 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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import sys | |
import os | |
import glob | |
import subprocess | |
from setuptools import setup, find_packages, Extension |