opt/ccache/Pkgfile

28 lines
544 B
Plaintext
Raw Normal View History

# Description: A compiler cache.
# URL: http://ccache.samba.org/
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Tilman Sauerbeck, tilman at crux dot nu
2006-02-23 16:26:10 +01:00
name=ccache
version=3.1.7
2011-01-09 12:31:32 +01:00
release=1
source=(http://samba.org/ftp/$name/$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 \
--mandir=/usr/man
make
make DESTDIR=$PKG install
install -d $PKG/usr/lib/$name
for c in cc c++ gcc g++; do
cd $PKG/usr/lib/$name && ln -s ../../bin/ccache $c
done
2006-02-23 16:26:10 +01:00
rm -rf $PKG/usr/info
2006-02-23 16:26:10 +01:00
}