1
0
forked from ports/opt

mingw-ccache-bindings: adopted port

This commit is contained in:
Tim Biermann 2023-08-27 17:30:45 +02:00
parent 36ac426d28
commit 2b32ff77ee
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
untrusted comment: verify with /etc/ports/opt.pub untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/XvzI1+ARn/EK7WO3vIUlkITF9TzO1ywKYXZytzC91nBSNVNgmdrbArhMtFq7hMVpj1zoP3Ne9+eYNbLpIkZgAw= RWSE3ohX2g5d/SEkI1rZkPnUFANYhgEyzoviYIAJgM0e8m4gqv58b+2E/6iiHmr2JDbRPmTNle1FoTqPDMI2zpjsfacOP0M3GgQ=
SHA256 (Pkgfile) = 29174a484ea55e1521586c77c3cd3f839933ffe4d8436f9d68bbbdc7176ab9d6 SHA256 (Pkgfile) = 50a4c78c7aa154dd40826f8488bd563892a6ae9a75815725e3147089a6c40a2c
SHA256 (.footprint) = 09e2189f3d4133224a9cf76dd3f2d819bf00cae876af59dbdf2dec6131ab8bdb SHA256 (.footprint) = 09e2189f3d4133224a9cf76dd3f2d819bf00cae876af59dbdf2dec6131ab8bdb

View File

@ -1,6 +1,6 @@
# Description: Masquerade directory to use ccache with mingw. # Description: Masquerade directory to use ccache with mingw
# URL: https://ccache.dev/ # URL: https://ccache.dev/
# Maintainer: Danny Rawlins, crux at romster dot me # Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: ccache mingw-w64-gcc # Depends on: ccache mingw-w64-gcc
name=mingw-ccache-bindings name=mingw-ccache-bindings
@ -9,12 +9,12 @@ release=1
source=() source=()
build() { build() {
install -d $PKG/usr/lib/ccache install -d $PKG/usr/lib/ccache
ln -s ../../bin/ccache $PKG/usr/lib/ccache/i686-w64-mingw32-c++ ln -s ../../bin/ccache $PKG/usr/lib/ccache/i686-w64-mingw32-c++
ln -s ../../bin/ccache $PKG/usr/lib/ccache/i686-w64-mingw32-g++ ln -s ../../bin/ccache $PKG/usr/lib/ccache/i686-w64-mingw32-g++
ln -s ../../bin/ccache $PKG/usr/lib/ccache/i686-w64-mingw32-gcc ln -s ../../bin/ccache $PKG/usr/lib/ccache/i686-w64-mingw32-gcc
ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-c++ ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-c++
ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-g++ ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-g++
ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-gcc ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-gcc
} }