menu-cache.build 271 B

123456789101112131415161718
  1. cd $tmpdir
  2. # Grab sources for libmenu-cache
  3. if [ ! -d $menucachesrcdir ]; then
  4. wget $menucachemirror/$menucache
  5. tar -xf $menucache
  6. fi
  7. cd $menucachesrcdir
  8. ./configure --prefix=$freondir --disable-static
  9. make -j$corecount
  10. make install
  11. cd $tmpdir