forked from ports/contrib
19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
# Description: Masquerade directory to use ccache with gcc-fortran.
|
|
# 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: gcc-fortran ccache
|
|
|
|
name=gcc-fortran-ccache-bindings
|
|
version=1
|
|
release=1
|
|
source=()
|
|
|
|
build() {
|
|
install -d $PKG/usr/lib/ccache
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/f90
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/f95
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/gfortran
|
|
}
|
|
|