summaryrefslogtreecommitdiff
path: root/java/eclipse-langpack/files/install.sh
blob: 037ecd2d26679948cabe6f9d8dc06e0a129efd2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

WRKDIR=$1; PREFIX=$2

cd ${WRKDIR}
for dir  in `find eclipse -type d | sort`; do
	install -d ${PREFIX}/lib/${dir}
done

for file in `find eclipse -type f | sort`; do
	install ${file} ${PREFIX}/lib/${file}
done