ccache: new package at 3.7.3

This commit is contained in:
Dylan Araps 2019-08-20 11:20:16 +00:00
parent 973757c323
commit 2a2449a666
5 changed files with 25 additions and 0 deletions

21
extra/ccache/build Executable file
View File

@ -0,0 +1,21 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
install -Dm 755 ccache "$1/usr/bin/ccache"
install -Dm 644 doc/ccache.1 "$1/usr/share/man/man1/ccache.1"
mkdir -p "$1/usr/lib/ccache/bin"
triplet=$(cc -dumpmachine)
for link in cc gcc g++ cpp c++ "$triplet-cc" "$triplet-gcc" \
"$triplet-g++" "$triplet-cpp" "$triplet-c++"; do
ln -sf /usr/bin/ccache "$1/usr/lib/ccache/bin/$link"
done

1
extra/ccache/checksums Normal file
View File

@ -0,0 +1 @@
73d2ec69fcf4fd3b956304036974a779b443d88882b69c5d81b62b5dc8630e04 ccache-3.7.3.tar.xz

1
extra/ccache/depends Normal file
View File

@ -0,0 +1 @@
zlib

1
extra/ccache/sources Normal file
View File

@ -0,0 +1 @@
https://github.com/ccache/ccache/releases/download/v3.7.3/ccache-3.7.3.tar.xz

1
extra/ccache/version Normal file
View File

@ -0,0 +1 @@
3.7.3 1