forked from thoka/java2python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall_on_debian_lenny.sh
More file actions
28 lines (18 loc) · 858 Bytes
/
install_on_debian_lenny.sh
File metadata and controls
28 lines (18 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# install dependencies on debian lenny/testing,
# then build
aptitude install git-core bzip2 autoconf libtool pkg-config make build-essential \
python python-yaml openjdk-6-jdk
mkdir install
cd install
wget ftp://ftp.strategoxt.org/pub/stratego/StrategoXT/strategoxt-0.17/debian50i386/aterm_2.5-1_i386.deb
wget ftp://ftp.strategoxt.org/pub/stratego/StrategoXT/strategoxt-0.17/debian50i386/sdf2-bundle_2.4-1_i386.deb
wget ftp://ftp.strategoxt.org/pub/stratego/StrategoXT/strategoxt-0.17/debian50i386/strategoxt_0.17-1_i386.deb
wget ftp://ftp.strategoxt.org/pub/stratego/StrategoXT/strategoxt-0.17/debian50i386/java-front_0.9-1_i386.deb
dpkg -i aterm_2.5-1_i386.deb
dpkg -i sdf2-bundle_2.4-1_i386.deb
dpkg -i strategoxt_0.17-1_i386.deb
dpkg -i java-front_0.9-1_i386.deb
cd ..
bash rebuild.sh
echo "look for examples in ./j2py/test"