blob: 5a285fd6cd71b03759bfd490c15988b62415dfb1 (
plain)
1 # Description: Masquerade directory to use ccache with mingw32-gcc.
2 # URL: http://www.mingw.org/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Danny Rawlins, monster dot romster at gmail dot com
5 # Depends on: mingw32-gcc ccache
6
7 name=mingw32-gcc-ccache-bindings
8 version=1
9 release=1
10 source=()
11
12 build() {
13 install -d $PKG/usr/lib/ccache
14 ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-c++
15 ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-cpp
16 ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-g++
17 ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-gcc
18 ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-gccbug
19 ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-gcov
20 }
|