milis/talimatname/genel/c/ccache/talimat

32 lines
1.1 KiB
Text
Raw Normal View History

2017-10-27 21:46:27 +03:00
# Tanım: bir önbellek derleyicisi
2017-05-15 17:20:06 +03:00
# URL: http://ccache.samba.org/
2017-10-27 21:46:27 +03:00
# Paketçi: milisarge
# Gerekler:
2017-12-24 01:47:53 +02:00
# Grup: sistem
2017-05-15 17:20:06 +03:00
2017-10-28 15:10:23 +03:00
isim=ccache
surum=3.3.4
devir=1
kaynak=(http://samba.org/ftp/ccache/ccache-$surum.tar.xz)
2017-05-15 17:20:06 +03:00
2017-10-28 00:59:41 +03:00
derle() {
2017-10-28 15:10:23 +03:00
cd ${SRC}/${isim}-${surum}
2017-05-15 17:20:06 +03:00
./configure --prefix=/usr \
--sysconfdir=/etc
make
2017-10-28 15:10:23 +03:00
cd ${SRC}/${isim}-${surum}
2017-05-15 17:20:06 +03:00
install -Dm 755 ccache ${PKG}/usr/bin/ccache
install -Dm 644 ccache.1 ${PKG}/usr/share/man/man1/ccache.1
install -d ${PKG}/usr/lib/ccache/bin
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/cc
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/gcc
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/g++
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/cpp
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/c++
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/${CHOST}-cc
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/${CHOST}-gcc
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/${CHOST}-g++
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/${CHOST}-cpp
ln -sf /usr/bin/ccache ${PKG}/usr/lib/ccache/bin/${CHOST}-c++
}