20 lines
557 B
Plaintext
20 lines
557 B
Plaintext
# Description: Masquerade directory to use ccache with gcc34.
|
|
# URL: http://gcc.gnu.org/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Depends on: gcc34 ccache
|
|
|
|
name=gcc34-ccache-bindings
|
|
version=1
|
|
release=1
|
|
source=()
|
|
|
|
build() {
|
|
install -d $PKG/usr/lib/ccache
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/cc-3.4
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/c++-3.4
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/gcc-3.4
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/g++-3.4
|
|
}
|
|
|