mingw32-gcc-ccache-bindings: initial commit

This commit is contained in:
Danny Rawlins 2008-05-19 14:48:23 +10:00
parent d0a43ac894
commit 011a533edf
3 changed files with 30 additions and 0 deletions
mingw32-gcc-ccache-bindings

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/ccache/
lrwxrwxrwx root/root usr/lib/ccache/mingw32-c++ -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/mingw32-cpp -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/mingw32-g++ -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/mingw32-gcc -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/mingw32-gccbug -> ../../bin/ccache
lrwxrwxrwx root/root usr/lib/ccache/mingw32-gcov -> ../../bin/ccache

@ -0,0 +1,21 @@
# Description: Masquerade directory to use ccache with mingw32-gcc.
# URL: http://www.mingw.org/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Danny Rawlins, monster dot romster at gmail dot com
# Depends on: mingw32-gcc ccache
name=mingw32-gcc-ccache-bindings
version=1
release=1
source=()
build() {
install -d $PKG/usr/lib/ccache
ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-c++
ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-cpp
ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-g++
ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-gcc
ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-gccbug
ln -s ../../bin/ccache $PKG/usr/lib/ccache/mingw32-gcov
}