aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/ccache/abuild
blob: 826b82691b7f025a0000e059f757e6ba8beb39c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
name=ccache
version=4.11.2
release=1
source="https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.xz"
build_opt="-DREDIS_STORAGE_BACKEND=OFF -DENABLE_TESTING=OFF"

postbuild() {
	install -d $PKG/usr/lib/ccache
	for c in gcc g++ cc c++ clang clang++; do
		ln -s /usr/bin/ccache $PKG/usr/lib/ccache/$c
	done
}