ports/java/eclipse-langpack/files/install.sh
John Marino 4671731e5c Stage java/eclipse-langpack
PR:		193088
Submitted by:	turutani (Kyoto)
2014-08-30 22:14:10 +00:00

12 lines
221 B
Bash

#!/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