opt/ccache/Pkgfile

26 lines
512 B
Plaintext
Raw Normal View History

2015-02-11 14:02:22 +01:00
# Description: A fast compiler cache.
2019-07-27 14:23:08 +02:00
# URL: https://ccache.dev/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2015-02-11 14:02:22 +01:00
# Depends on: zlib
2018-09-07 11:03:12 +02:00
# Optional: clang-ccache-bindings
2006-02-23 16:26:10 +01:00
name=ccache
2020-10-04 12:59:22 +02:00
version=3.7.12
2011-01-09 12:31:32 +01:00
release=1
2019-05-15 12:07:31 +02:00
source=(https://github.com/$name/$name/releases/download/v$version/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2018-09-07 11:03:12 +02:00
install -d $PKG/usr/lib/ccache
2015-02-11 14:02:22 +01:00
2018-09-07 11:03:12 +02:00
for c in cc gcc g++ cpp c++; do
2015-02-11 14:02:22 +01:00
ln -s /usr/bin/ccache $PKG/usr/lib/ccache/$c
done
2006-02-23 16:26:10 +01:00
}