~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to windows/get_requirements.sh

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
mkdir requirements
 
4
cd requirements
 
5
 
 
6
echo "Instructions for installing" > README.txt
 
7
echo "===========================" >> README.txt
 
8
echo "" >> README.txt
 
9
echo "Instructions are at:" >> README.txt
 
10
echo "https://develop.participatoryculture.org/index.php/WindowsBuildDocs" >> README.txt
 
11
 
 
12
 
 
13
echo "Fetching Python 2.6.5"
 
14
wget "http://python.org/ftp/python/2.6.5/python-2.6.5.msi"
 
15
 
 
16
echo "Fetching Py2exe 0.6.9"
 
17
wget "http://downloads.sourceforge.net/project/py2exe/py2exe/0.6.9/py2exe-0.6.9.win32-py2.6.exe?use_mirror=superb-sea2"
 
18
 
 
19
echo "Fetching Pyrex 0.9.9"
 
20
wget "http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/Pyrex-0.9.9.tar.gz"
 
21
 
 
22
echo "Fetching NullSoft Installer 2.46"
 
23
wget "http://downloads.sourceforge.net/project/nsis/NSIS%202/2.46/nsis-2.46-setup.exe?use_mirror=softlayer"
 
24
 
 
25
echo "Fetching PyGTK 2.16"
 
26
wget "http://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.16/pygtk-2.16.0.win32-py2.6.exe"
 
27
 
 
28
echo "Fetching PyGobject 2.20.0"
 
29
wget "http://ftp.acc.umu.se/pub/GNOME/binaries/win32/pygobject/2.20/pygobject-2.20.0.win32-py2.6.exe"
 
30
 
 
31
echo "Fetching PyCairo 1.8.6"
 
32
wget "http://ftp.acc.umu.se/pub/GNOME/binaries/win32/pycairo/1.8/pycairo-1.8.6.win32-py2.6.exe"
 
33
 
 
34
echo "Fetching PyCurl 7.19.0.win32-py2.6"
 
35
echo "This comes from http://www.lfd.uci.edu/~gohlke/pythonlibs/ "
 
36
echo "but they don't allow wget, so we fake the user-agent."
 
37
wget -U "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0rc3) Gecko/20020523" "http://www.lfd.uci.edu/~gohlke/pythonlibs/pycurl-ssl-7.19.0.win32-py2.6.exe"