alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

abuild (333B)


      1 name=ccache
      2 version=4.11.3
      3 release=1
      4 source="https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.xz"
      5 build_opt="-DREDIS_STORAGE_BACKEND=OFF -DENABLE_TESTING=OFF"
      6 
      7 postbuild() {
      8 	install -d $PKG/usr/lib/ccache
      9 	for c in gcc g++ cc c++ clang clang++; do
     10 		ln -s /usr/bin/ccache $PKG/usr/lib/ccache/$c
     11 	done
     12 }