25 lines
566 B
Plaintext
25 lines
566 B
Plaintext
|
# Tanım: Varnish bir web uygulaması hızlandırıcısıdır.
|
|||
|
# URL: http://www.varnish-cache.org/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler: libedit pcre python-docutils
|
|||
|
|
|||
|
isim=varnish
|
|||
|
surum=4.0.3
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(
|
|||
|
http://repo.varnish-cache.org/source/$isim-$surum.tar.gz
|
|||
|
varnish.service)
|
|||
|
|
|||
|
derle(){
|
|||
|
cd $isim-$surum
|
|||
|
./configure --prefix=/usr \
|
|||
|
--sysconfdir=/etc \
|
|||
|
--localstatedir=/var/lib
|
|||
|
make
|
|||
|
make DESTDIR=$PKG install
|
|||
|
|
|||
|
# install the varnish init script
|
|||
|
install -Dm755 $SRC/$isim.service $PKG/etc/rc.d/init.d/$isim
|
|||
|
}
|