blob: 0145439342be6daf9cba66e3b47055a5c21608d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ccache
pkgver=3.6
_pkgver=${pkgver}
pkgrel=0
pkgdesc="A fast C/C++ compiler cache"
url="https://ccache.samba.org/"
arch="all"
license="GPL-3.0-or-later"
makedepends="zlib-dev"
checkdepends="bash perl"
subpackages="$pkgname-doc"
source="https://samba.org/ftp/$pkgname/$pkgname-$_pkgver.tar.xz"
builddir="$srcdir/$pkgname-$pkgver"
prepare() {
default_prepare
cd "$builddir"
update_config_sub
}
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
check() {
cd "$builddir"
make test
}
package() {
cd "$builddir"
install -Dm 755 ccache "$pkgdir"/usr/bin/ccache
install -Dm 644 doc/ccache.1 "$pkgdir"/usr/share/man/man1/ccache.1
local link=
mkdir -p "$pkgdir"/usr/lib/ccache/bin
for link in cc gcc g++ cpp c++ ${CHOST}-cc ${CHOST}-gcc \
${CHOST}-g++ ${CHOST}-cpp ${CHOST}-c++; do
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/$link
done
}
sha512sums="13ce4c9084983ce77617cf005235987715cd6b630dac13a17cb9badce24aab71bff505e63da4206878e32d337cc674f05fbf78540711ec5b33a0b8384c47fa0d ccache-3.6.tar.xz"
|