mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 01:20:31 -04:00
12 lines
221 B
Bash
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
|