2023-08-18 19:54:24 +02:00
|
|
|
# Description: Masquerade directory to use ccache with gcc-fortran
|
|
|
|
# URL: https://gcc.gnu.org/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: ccache gcc-fortran
|
2008-05-19 14:40:22 +10:00
|
|
|
|
|
|
|
name=gcc-fortran-ccache-bindings
|
|
|
|
version=1
|
2016-08-29 13:10:14 +10:00
|
|
|
release=2
|
2008-05-19 14:40:22 +10:00
|
|
|
source=()
|
|
|
|
|
|
|
|
build() {
|
2023-08-18 19:54:24 +02:00
|
|
|
install -d $PKG/usr/lib/ccache
|
2008-05-19 14:40:22 +10:00
|
|
|
|
2023-08-18 19:54:24 +02:00
|
|
|
ln -s ../../bin/ccache $PKG/usr/lib/ccache/f77
|
|
|
|
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
|
|
|
|
}
|