comparison ext/SConscript @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children b661ba234c3b
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
1 import os
2 from utils.util_scripts.path import path
3
4 Import('env')
5
6 curpath = str(path('.'))
7 installpath = str((path('.') / path('install')).abspath())
8
9 os.chdir(str(path('.') / path('guichan-0.8.1')))
10
11 os.system('./configure')
12 os.system('make')
13 os.system('make install prefix=%s' % installpath)
14
15 os.chdir(str(path('..')))
16
17 os.chdir(str(path('.') / path('libpng-1.2.29')))
18
19 os.system('./configure')
20 os.system('make all-am')
21 os.system('make install prefix=%s' % installpath)
22 os.system('make install-data-hook prefix=%s' % installpath)
23
24 os.chdir('..')
25 os.chdir(str(path('.') / path('openal-soft')))
26 os.system('./configure')
27 os.system('make')
28 os.system('make install prefix=%s' % installpath)
29
30 os.chdir(curpath)