blob: 30a6f53572b2d43bd0c1b7996ad10590a50bd2fc (
plain)
1 # Description: Masquerade directory to use ccache with gdc.
2 # URL: http://dgcc.sourceforge.net/
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: gdc ccache
6
7 name=gdc-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/gdc
15 ln -s ../../bin/ccache $PKG/usr/lib/ccache/gdmd
16 }
|