From 2b32ff77eeeb41a611af58575cec2d21eeba2e56 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sun, 27 Aug 2023 17:30:45 +0200 Subject: [PATCH] mingw-ccache-bindings: adopted port --- mingw-ccache-bindings/.signature | 4 ++-- mingw-ccache-bindings/Pkgfile | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/mingw-ccache-bindings/.signature b/mingw-ccache-bindings/.signature index efe850bee..d116dd2b3 100644 --- a/mingw-ccache-bindings/.signature +++ b/mingw-ccache-bindings/.signature @@ -1,4 +1,4 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/XvzI1+ARn/EK7WO3vIUlkITF9TzO1ywKYXZytzC91nBSNVNgmdrbArhMtFq7hMVpj1zoP3Ne9+eYNbLpIkZgAw= -SHA256 (Pkgfile) = 29174a484ea55e1521586c77c3cd3f839933ffe4d8436f9d68bbbdc7176ab9d6 +RWSE3ohX2g5d/SEkI1rZkPnUFANYhgEyzoviYIAJgM0e8m4gqv58b+2E/6iiHmr2JDbRPmTNle1FoTqPDMI2zpjsfacOP0M3GgQ= +SHA256 (Pkgfile) = 50a4c78c7aa154dd40826f8488bd563892a6ae9a75815725e3147089a6c40a2c SHA256 (.footprint) = 09e2189f3d4133224a9cf76dd3f2d819bf00cae876af59dbdf2dec6131ab8bdb diff --git a/mingw-ccache-bindings/Pkgfile b/mingw-ccache-bindings/Pkgfile index 9a5cd2844..8898dc9b9 100644 --- a/mingw-ccache-bindings/Pkgfile +++ b/mingw-ccache-bindings/Pkgfile @@ -1,6 +1,6 @@ -# Description: Masquerade directory to use ccache with mingw. +# Description: Masquerade directory to use ccache with mingw # 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 name=mingw-ccache-bindings @@ -9,12 +9,12 @@ release=1 source=() 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-g++ - 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-g++ - ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-gcc + 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-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-g++ + ln -s ../../bin/ccache $PKG/usr/lib/ccache/x86_64-w64-mingw32-gcc }