Skip to content

Commit

Permalink
Merge branch 'release-1_7_0' of github.com:qgis/Quantum-GIS into rele…
Browse files Browse the repository at this point in the history
…ase-1_7_0
  • Loading branch information
timlinux committed May 10, 2011
2 parents 27febc1 + 163324f commit 73a1bf5
Show file tree
Hide file tree
Showing 13 changed files with 520 additions and 327 deletions.
235 changes: 98 additions & 137 deletions INSTALL

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions doc/INSTALL.t2t
Expand Up @@ -86,4 +86,6 @@ source directory.

%!include: osx.t2t

%!include: git.t2t

%!include: iauthors.t2t
57 changes: 57 additions & 0 deletions doc/git.t2t
@@ -0,0 +1,57 @@

= git =[git]

== Installation ==

Optional. If you want to try different branches and/or easily update the source when changes are made, install git and clone the source. For random just-want-to-see-what's-going-on-in-development builds, download a tarbal from github.

=== Install git for GNU/Linux ===

=== install git for Windows ===

=== Install git for OSX ===

The [git http://git-scm.com/] project has a downloadable build of git.
Make sure to get the package matching your processor (x86_64 most likely, only the first Intel Macs need the i386 package).

Once downloaded open the disk image and run the installer.

__PPC/source note__

The git site does not offer PPC builds. If you need a PPC build, or you just want
a little more control over the installation, you need to compile it yourself.

Download the source from http://git-scm.com/. Unzip it, and in a Terminal cd to the source folder, then:

```
make prefix=/usr/local
sudo make prefix=/usr/local install
```

If you don't need any of the extras, Perl, Python or TclTk (GUI), you can disable them before running make with:

```
export NO_PERL=
export NO_TCLTK=
export NO_PYTHON=
```

== Get QGIS from git ==

You can download a development tarball (no git installation needed) from:

http://github.com/qgis/Quantum-GIS

This defaults to the current master, but you can select any other branch or tag as desired.

Or for more long-term testing of development sources: clone the sources with git (in an appropriate location on your computer):

```
git clone git://github.com/qgis/Quantum-GIS.git
```

This automatically activates the master. To switch to another branch:

```
git checkout [branchname]
```

0 comments on commit 73a1bf5

Please sign in to comment.