FreonLinux/pkgbuild/menu-cache.build

18 lines
271 B
Plaintext
Executable File

cd $tmpdir
# Grab sources for libmenu-cache
if [ ! -d $menucachesrcdir ]; then
wget $menucachemirror/$menucache
tar -xf $menucache
fi
cd $menucachesrcdir
./configure --prefix=$freondir --disable-static
make -j$corecount
make install
cd $tmpdir