derle.sh 197 B

12345678910
  1. cd "${SRC}"
  2. for dir in *; do
  3. if [ -d "${dir}" ]; then
  4. pushd "${dir}"
  5. ./configure --prefix=/usr \
  6. --with-fontdir=/usr/share/fonts/misc
  7. make
  8. popd
  9. fi
  10. done