diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2016-04-03 11:12:31 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2016-04-03 11:12:31 +1000 |
commit | da4661e7d6b6c2d5244cb04459f92564dded1f18 (patch) | |
tree | 175500ad50e8e87270aaa494d8039878ca545e65 /gcc48-ccache-bindings | |
parent | 7f0f053b78e84981891d522bfbebbb20bb4ff66f (diff) | |
download | opt-da4661e7d6b6c2d5244cb04459f92564dded1f18.tar.gz opt-da4661e7d6b6c2d5244cb04459f92564dded1f18.tar.xz |
gcc48-ccache-bindings: initial import
Diffstat (limited to 'gcc48-ccache-bindings')
-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 +} |