Skip to content

Instantly share code, notes, and snippets.

View turbo's full-sized avatar

Pierre turbo

View GitHub Profile
Thank you for Your interest in the Turbo project. This document clarifies the terms under which You may make Contributions — which may include without limitation, software, bug fixes, configuration changes, documentation, or any other materials — to any of the projects owned or managed by the Turbo organization.
You accept and agree to the following terms and conditions for Your present and future Contributions submitted to the Turbo project. Except for the license granted herein to the Turbo organization, You reserve all right, title, and interest in and to Your Contributions.
Licenses
Turbo organization projects (code, documentation, and any other materials) are each released under the terms of the individual licenses as noted in the project's repository, or, if no separate license is specified, under the terms of the MIT license, with the following exception:
Copyright and related rights for sample code included in the documentation are waived via CC0, as well as rights to any change to existing sample
# grab the frontend
[ ! -d "lcc" ] && git clone https://github.com/drh/lcc
Cloning into 'lcc'...
remote: Counting objects: 2441, done.
remote: Total 2441 (delta 0), reused 0 (delta 0), pack-reused 2441
Receiving objects: 100% (2441/2441), 2.52 MiB | 2.69 MiB/s, done.
Resolving deltas: 100% (1102/1102), done.
Checking connectivity... done.
# create a build directory
# grab the frontend
[ ! -d "lcc" ] && git clone https://github.com/drh/lcc
Initialized empty Git repository in /root/movfuscator/lcc/.git/
remote: Counting objects: 2441, done.
remote: Total 2441 (delta 0), reused 0 (delta 0), pack-reused 2441
Receiving objects: 100% (2441/2441), 2.52 MiB | 2.19 MiB/s, done.
Resolving deltas: 100% (1102/1102), done.
# create a build directory
export BUILDDIR=`pwd`/build
@turbo
turbo / apt.sh
Last active March 20, 2016 18:34
Turbo Installation Script for Debian
# Tested in ubuntu Server 14.04
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
sudo sh -c 'echo "deb http://download.mono-project.com/repo/debian wheezy main">>/etc/apt/sources.list.d/mono-xamarin.list;apt-get update;apt-get install git gcc mono-complete'
sudo sh -c "git clone http://github.com/turbo/src;cd src;xbuild *.sln /v:q;cp *.dll /usr/lib/;mkbundle -o /usr/bin/turbo *.exe;cd .."
# Tested in ubuntu Server 14.04
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
sudo sh -c 'echo "deb http://download.mono-project.com/repo/debian wheezy main">>/etc/apt/sources.list.d/mono-xamarin.list;apt-get update;apt-get install git gcc mono-complete'
sudo sh -c "git clone http://github.com/turbo/src;cd src;xbuild *.sln /v:q;cp *.dll /usr/lib/;mkbundle -o /usr/bin/turbo *.exe;cd .."
@turbo
turbo / in.sh
Last active March 21, 2016 15:53
Turbo Installation Debian
set -x
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
sudo sh -c 'echo "deb http://download.mono-project.com/repo/debian wheezy main">>/etc/apt/sources.list.d/mono-xamarin.list;apt-get -qq update;apt-get -qq install git gcc mono-complete'
sudo sh -c "git clone http://github.com/turbo/src;cd src;xbuild *.sln /v:q;cp *.dll /usr/lib/;mkbundle -o /usr/bin/turbo *.exe;cd .."
@turbo
turbo / fedora.sh
Last active March 21, 2016 16:36
Turbo Fedora
sudo rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
sudo sh -c "yum -yq install yum-utils;yum-config-manager --add-repo http://download.mono-project.com/repo/centos/"
sudo sh -c "yum -yq update;yum -yq install git gcc mono-complete"
sudo sh -c "git clone http://github.com/turbo/src;cd src;xbuild *.sln /v:q;cp *.dll /usr/lib/;mkbundle -o /usr/bin/turbo *.exe;cd .."
sudo rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
sudo sh -c "yum -y -q install yum-utils;yum-config-manager --add-repo http://download.mono-project.com/repo/centos/"
sudo sh -c "yum -y -q update;yum -y -q install git gcc mono-complete"
sudo sh -c "git clone http://github.com/turbo/src;cd src;xbuild *.sln /v:q;cp *.dll /usr/lib/;mkbundle -o /usr/bin/turbo *.exe;cd .."
tbarch