derle.sh 223 B

123456789101112131415
  1. cd $SRC/xorg-cf-files-1.0.6
  2. patch -p1 -i ../imake-linuxconfig.patch
  3. cd $SRC
  4. for i in *; do
  5. if [ -d "${i}" ]; then
  6. pushd "${i}"
  7. autoreconf -fi
  8. ./configure --prefix=/usr --mandir=/usr/share/man
  9. make
  10. popd
  11. fi
  12. done