pygame is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

pygame / pygame http://pygame.org/

Clone this repository (size: 15.4 MB): HTTPS / SSH
hg clone https://bitbucket.org/pygame/pygame
hg clone ssh://hg@bitbucket.org/pygame/pygame

pygame / build_eggs.sh

Branch
ctypes-soc
1
2
3
4
5
6
7
8
9
#!/bin/bash
# $Id:$

pythons="python2.3 python2.4 python2.5"

for python in $pythons; do
    $python setup_sdl.py bdist_egg
    $python setup_pygame.py bdist_egg
done