diff options
-rw-r--r-- | gcc48-ccache-bindings/.footprint | 5 | ||||
-rw-r--r-- | gcc48-ccache-bindings/.md5sum | 0 | ||||
-rw-r--r-- | gcc48-ccache-bindings/Pkgfile | 16 |
3 files changed, 21 insertions, 0 deletions
diff --git a/gcc48-ccache-bindings/.footprint b/gcc48-ccache-bindings/.footprint new file mode 100644 index 000000000..7ce1a06be --- /dev/null +++ b/gcc48-ccache-bindings/.footprint @@ -0,0 +1,5 @@ +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/g++-4.8 -> ../../bin/ccache +lrwxrwxrwx root/root usr/lib/ccache/gcc-4.8 -> ../../bin/ccache diff --git a/gcc48-ccache-bindings/.md5sum b/gcc48-ccache-bindings/.md5sum new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/gcc48-ccache-bindings/.md5sum diff --git a/gcc48-ccache-bindings/Pkgfile b/gcc48-ccache-bindings/Pkgfile new file mode 100644 index 000000000..ded36dbe6 --- /dev/null +++ b/gcc48-ccache-bindings/Pkgfile @@ -0,0 +1,16 @@ +# Description: Masquerade directory to use ccache with gcc48. +# URL: http://gcc.gnu.org/ +# Maintainer: Danny Rawlins, crux at romster dot me +# Packager: Danny Rawlins, crux at romster dot me +# Depends on: gcc48 ccache + +name=gcc48-ccache-bindings +version=1 +release=1 +source=() + +build() { + install -d $PKG/usr/lib/ccache + ln -s ../../bin/ccache $PKG/usr/lib/ccache/gcc-4.8 + ln -s ../../bin/ccache $PKG/usr/lib/ccache/g++-4.8 +} |