milis/talimatname/genel/squid/talimat
2017-03-06 00:21:32 +02:00

38 lines
1.2 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Fonksiyonel vwkil sunucu yazılımı
# URL: http://www.squid-cache.org
# Packager: milisarge
# Depends on:
name=squid
version=3.5.24
release=1
source=(http://www.squid-cache.org/Versions/v3/3.5/$name-$version.tar.xz
squid_servisi)
build () {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc/squid \
--libexecdir=/usr/lib/squid \
--localstatedir=/var \
--datadir=/usr/share/squid \
--with-logdir=/var/log/squid \
--with-pidfile=/var/run/squid.pid \
--with-swapdir=/var/squid \
--with-default-user=squid \
--enable-linux-netfilter \
--enable-storeio=ufs,aufs,diskd,rock \
--enable-removal-policies=lru,heap \
--with-large-files \
--with-pthreads \
--with-aufs-threads=16 \
--disable-auto-locale
make all
make DESTDIR=$PKG install
rm -r $PKG/var/run
find $PKG/usr/share/squid/errors/* -prune ! -name templates | xargs rm -r
install -D -m 755 $SRC/squid_servisi $PKG/etc/rc.d/init.d/squid
}