Revision 6544
Added by Aaron Marcuse-Kubitza almost 12 years ago
Makefile | ||
---|---|---|
78 | 78 |
##### Python |
79 | 79 |
|
80 | 80 |
python-Linux: _always |
81 |
-sudo apt-get install python |
|
82 |
-sudo apt-get install python3 |
|
83 |
-sudo apt-get install python-dev |
|
84 |
-sudo apt-get install python-dateutil |
|
85 |
-sudo apt-get install python-parallel |
|
86 |
-sudo apt-get install python-profiler |
|
87 |
-sudo apt-get install python-pip |
|
88 |
-sudo apt-get install pymetrics |
|
81 |
-sudo apt-get --yes install python
|
|
82 |
-sudo apt-get --yes install python3
|
|
83 |
-sudo apt-get --yes install python-dev
|
|
84 |
-sudo apt-get --yes install python-dateutil
|
|
85 |
-sudo apt-get --yes install python-parallel
|
|
86 |
-sudo apt-get --yes install python-profiler
|
|
87 |
-sudo apt-get --yes install python-pip
|
|
88 |
-sudo apt-get --yes install pymetrics
|
|
89 | 89 |
-sudo pip install ordereddict |
90 | 90 |
-sudo pip install pp |
91 | 91 |
|
... | ... | |
110 | 110 |
##### PHP |
111 | 111 |
|
112 | 112 |
php-Linux: _always |
113 |
-sudo apt-get install php-http-request |
|
113 |
-sudo apt-get --yes install php-http-request
|
|
114 | 114 |
|
115 | 115 |
php-Darwin: _always |
116 | 116 |
@echo $(emph)'Installing PHP PEAR and HTTP_Request on Mac OS X:'$(endEmph) |
... | ... | |
199 | 199 |
$($(call forOs,postgresReload)) |
200 | 200 |
|
201 | 201 |
postgres-Linux: _always |
202 |
-sudo apt-get install postgresql |
|
203 |
-sudo apt-get install postgresql-contrib |
|
204 |
-sudo apt-get install postgresql-plpython3-$(pgVersion) |
|
205 |
-sudo apt-get install libpq-dev |
|
206 |
-sudo apt-get install postgresql-$(pgVersion)-postgis |
|
207 |
-sudo apt-get install phppgadmin |
|
202 |
-sudo apt-get --yes install postgresql
|
|
203 |
-sudo apt-get --yes install postgresql-contrib
|
|
204 |
-sudo apt-get --yes install postgresql-plpython3-$(pgVersion)
|
|
205 |
-sudo apt-get --yes install libpq-dev
|
|
206 |
-sudo apt-get --yes install postgresql-$(pgVersion)-postgis
|
|
207 |
-sudo apt-get --yes install phppgadmin
|
|
208 | 208 |
$(editPhppgadminApacheConf) |
209 | 209 |
$(editApacheConfForPhppgadmin) |
210 | 210 |
$(if $(nonApacheOnPort80),$(editApachePortsConf)) |
... | ... | |
327 | 327 |
mysql-Linux: _always |
328 | 328 |
@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph) |
329 | 329 |
@$(wait) |
330 |
-sudo apt-get install mysql-server mysql-client python-mysqldb |
|
330 |
-sudo apt-get --yes install mysql-server mysql-client python-mysqldb
|
|
331 | 331 |
|
332 | 332 |
mysql-Darwin: _always |
333 | 333 |
@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph) |
Also available in: Unified diff
root Makefile: apt-get: Use --yes to allow unattended installations