mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
added community/squid
This commit is contained in:
parent
5c8e1b2939
commit
2dff39f85c
7 changed files with 154 additions and 0 deletions
114
community/squid/PKGBUILD
Normal file
114
community/squid/PKGBUILD
Normal file
|
@ -0,0 +1,114 @@
|
|||
# $Id$
|
||||
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||||
# Contributor: Mark Coolen <mark.coolen@gmail.com>
|
||||
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||||
# Contributor: Kevin Piche <kevin@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - explicitly link v5/v6 with libatomic
|
||||
|
||||
pkgname=squid
|
||||
pkgver=4.1
|
||||
pkgrel=1
|
||||
pkgdesc='Full-featured Web proxy cache server'
|
||||
arch=('x86_64')
|
||||
url='http://www.squid-cache.org'
|
||||
depends=('openssl-1.0' 'pam' 'perl' 'libltdl' 'libcap' 'nettle' 'gnutls' 'libnsl')
|
||||
makedepends=('krb5')
|
||||
license=('GPL')
|
||||
options=('emptydirs')
|
||||
backup=('etc/squid/squid.conf'
|
||||
'etc/squid/cachemgr.conf'
|
||||
'etc/squid/errorpage.css'
|
||||
'etc/squid/mime.conf')
|
||||
validpgpkeys=('EA31CC5E9488E5168D2DCC5EB268E706FF5CF463'
|
||||
'B06884EDB779C89B044E64E3CD6DBF8EF3B17D3E')
|
||||
source=("http://www.squid-cache.org/Versions/v4/$pkgname-$pkgver.tar.xz"{,.asc}
|
||||
'squid.pam'
|
||||
'squid.service'
|
||||
'squid.tmpfiles'
|
||||
'squid.sysusers'
|
||||
'squid-rotate.service'
|
||||
'squid-rotate.timer')
|
||||
sha256sums=('b61e486fe1ba1f5c918a48d5ae3929d3f604e347c3c7dceb1105a9f0e5ee9eb5'
|
||||
'SKIP'
|
||||
'11fb388f8679fd6461e0de006810ea608a3686fffda16904b0ed71f412be499c'
|
||||
'b0cf95652d56c62ae0ceba8912d11ac248bdb3eb91f062bceadd99f80c4b160e'
|
||||
'495f54e51f6ec1e4dce87090d76718aea1eb37559c4439d876dd39598163062a'
|
||||
'c903eb86e6968b9d3bd0a9ad3335e8ce76a718b6217251e9dd7e66d5cf1ac94a'
|
||||
'3a97aa6bf6dcdc427e73bb2f36afdeaaf2bbf7dd2c0bbb7f1a948850198a8b7c'
|
||||
'8bc77fa1f653a17a4956feac042be9577ba30a8a43480b443fbd67640ae711ee')
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LIBS="-latomic"
|
||||
|
||||
PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig \
|
||||
LIBS=$LIBS
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sbindir=/usr/bin \
|
||||
--datadir=/usr/share/squid \
|
||||
--sysconfdir=/etc/squid \
|
||||
--libexecdir=/usr/lib/squid \
|
||||
--localstatedir=/var \
|
||||
--with-logdir=/var/log/squid \
|
||||
--with-pidfile=/run/squid.pid \
|
||||
--enable-auth \
|
||||
--enable-auth-basic \
|
||||
--enable-auth-ntlm \
|
||||
--enable-auth-digest \
|
||||
--enable-auth-negotiate \
|
||||
--enable-removal-policies="lru,heap" \
|
||||
--enable-storeio="aufs,ufs,diskd,rock" \
|
||||
--enable-delay-pools \
|
||||
--enable-arp-acl \
|
||||
--with-openssl \
|
||||
--enable-snmp \
|
||||
--enable-linux-netfilter \
|
||||
--enable-ident-lookups \
|
||||
--enable-useragent-log \
|
||||
--enable-cache-digests \
|
||||
--enable-referer-log \
|
||||
--enable-arp-acl \
|
||||
--enable-htcp \
|
||||
--enable-carp \
|
||||
--enable-epoll \
|
||||
--with-large-files \
|
||||
--enable-arp-acl \
|
||||
--with-default-user=proxy \
|
||||
--enable-async-io \
|
||||
--enable-truncate \
|
||||
--enable-icap-client \
|
||||
--enable-ssl-crtd \
|
||||
--disable-arch-native \
|
||||
--disable-strict-error-checking \
|
||||
--enable-wccpv2
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
|
||||
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
|
||||
install -Dm644 "$srcdir/squid.pam" "$pkgdir/etc/pam.d/squid"
|
||||
install -Dm644 "$srcdir/squid.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/squid.conf"
|
||||
install -Dm644 "$srcdir/squid.sysusers" "$pkgdir/usr/lib/sysusers.d/squid.conf"
|
||||
install -Dm644 "$srcdir/squid.service" \
|
||||
"$pkgdir/usr/lib/systemd/system/squid.service"
|
||||
install -Dm644 "$srcdir/squid-rotate.service" \
|
||||
"$pkgdir/usr/lib/systemd/system/squid-rotate.service"
|
||||
install -Dm644 "$srcdir/squid-rotate.timer" \
|
||||
"$pkgdir/usr/lib/systemd/system/squid-rotate.timer"
|
||||
# install -dm755 "$pkgdir/usr/lib/systemd/system/timers.target.wants"
|
||||
# ln -s ../squid-rotate.timer \
|
||||
# "$pkgdir/usr/lib/systemd/system/timers.target.wants/squid-rotate.timer"
|
||||
rm -rf "$pkgdir/run" "$pkgdir"/var/{cache,log,run}
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et ft=sh
|
9
community/squid/squid-rotate.service
Normal file
9
community/squid/squid-rotate.service
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=Squid Rotate
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/squid -k rotate
|
||||
Nice=19
|
||||
IOSchedulingClass=best-effort
|
||||
IOSchedulingPriority=7
|
10
community/squid/squid-rotate.timer
Normal file
10
community/squid/squid-rotate.timer
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Weekly rotation of squid log files
|
||||
|
||||
[Timer]
|
||||
OnCalendar=weekly
|
||||
AccuracySec=1d
|
||||
Persistent=true
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
4
community/squid/squid.pam
Normal file
4
community/squid/squid.pam
Normal file
|
@ -0,0 +1,4 @@
|
|||
#/etc/pam.d/squid
|
||||
#
|
||||
auth required pam_unix.so
|
||||
account required pam_unix.so
|
13
community/squid/squid.service
Normal file
13
community/squid/squid.service
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=Web Proxy Cache Server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
PIDFile=/run/squid.pid
|
||||
ExecStart=/usr/bin/squid -sYC
|
||||
ExecStop=/usr/bin/squid -k shutdown
|
||||
ExecReload=/usr/bin/squid -k reconfigure
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
1
community/squid/squid.sysusers
Normal file
1
community/squid/squid.sysusers
Normal file
|
@ -0,0 +1 @@
|
|||
u proxy 15 - /var/empty
|
3
community/squid/squid.tmpfiles
Normal file
3
community/squid/squid.tmpfiles
Normal file
|
@ -0,0 +1,3 @@
|
|||
d /run/squid 0755 proxy proxy -
|
||||
d /var/cache/squid 0755 proxy proxy -
|
||||
d /var/log/squid 0755 proxy proxy -
|
Loading…
Reference in a new issue