1
0
forked from ports/opt

gcc48-ccache-bindings: initial import

This commit is contained in:
Danny Rawlins 2016-04-03 11:12:31 +10:00
parent 7f0f053b78
commit da4661e7d6
3 changed files with 21 additions and 0 deletions

View File

@ -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

View File

View File

@ -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
}