xcb.build 721 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. cd $tmpdir
  2. # Grab latest sources for freetype
  3. if [ ! -d $xcbsrcdir ]; then
  4. wget $xcbmirror/$xcb
  5. tar -xf $xcb
  6. fi
  7. cd $xcbsrcdir
  8. ./configure --prefix=$freondir --disable-static
  9. make -j$corecount
  10. make install
  11. cd $tmpdir
  12. # Grab latest sources for freetype
  13. if [ ! -d $xcbutilsrcdir ]; then
  14. wget $xcbmirror/$xcbutil
  15. tar -xf $xcbutil
  16. fi
  17. cd $xcbutilsrcdir
  18. ./configure --prefix=$freondir --disable-static
  19. make -j$corecount
  20. make install
  21. cd $tmpdir
  22. # Grab latest sources for freetype
  23. if [ ! -d $xcbprotosrcdir ]; then
  24. wget $xcbmirror/$xcbproto
  25. tar -xf $xcbproto
  26. fi
  27. cd $xcbprotosrcdir
  28. ./configure --prefix=$freondir --disable-static
  29. make -j$corecount
  30. make install