blob: 405e2ef2591bf75373c5173cca0737a33865cb6e (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ccache
pkgver=3.1.4
pkgrel=0
pkgdesc="ccache is a compiler cache"
url="http://ccache.samba.org/"
arch="x86 x86_64"
license="GPL"
subpackages="$pkgname-doc"
depends=""
makedepends=""
source="http://samba.org/ftp/$pkgname/$pkgname-$pkgver.tar.gz"
build ()
{
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
}
package() {
cd "$srcdir"/$pkgname-$pkgver
install -Dm 755 ccache "$pkgdir"/usr/bin/ccache
install -Dm 644 ccache.1 "$pkgdir"/usr/share/man/man1/ccache.1
mkdir -p "$pkgdir"/usr/lib/ccache/bin
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/cc
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/gcc
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/g++
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/cpp
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/c++
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-cc
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-gcc
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-g++
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-cpp
ln -sf /usr/bin/ccache "$pkgdir"/usr/lib/ccache/bin/${CHOST}-c++
}
md5sums="d43a8fbe83767978098ba7f8ee25d3d1 ccache-3.1.4.tar.gz"
|