opt/ccache/Pkgfile
2011-12-15 08:50:25 +01:00

24 lines
509 B
Plaintext

# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Packager:
# Description: A compiler cache
# URL: http://ccache.samba.org
name=ccache
version=3.1.6
release=1
source=(http://samba.org/ftp/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man
make
make DESTDIR=$PKG install
mkdir -p $PKG/usr/lib/$name
for c in cc c++ gcc g++; do
cd $PKG/usr/lib/$name && ln -s ../../bin/ccache $c
done
rm -rf $PKG/usr/info
}