mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
removed community/squid
This commit is contained in:
parent
3e9b863d5e
commit
bf69da75fb
5 changed files with 0 additions and 139 deletions
|
@ -1,87 +0,0 @@
|
|||
# $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>
|
||||
# - configure with --disable-arch-native
|
||||
|
||||
pkgname=squid
|
||||
pkgver=3.4.1
|
||||
pkgrel=1.1
|
||||
pkgdesc='Full-featured Web proxy cache server'
|
||||
arch=('x86_64' 'i686')
|
||||
url='http://www.squid-cache.org'
|
||||
depends=('openssl' 'pam' 'cron' 'perl' 'libltdl')
|
||||
makedepends=('libcap' 'krb5')
|
||||
license=('GPL')
|
||||
options=('emptydirs')
|
||||
backup=('etc/squid/squid.conf'
|
||||
'etc/squid/mime.conf')
|
||||
install=$pkgname.install
|
||||
source=("http://www.squid-cache.org/Versions/v3/3.4/$pkgname-$pkgver.tar.bz2"
|
||||
'squid.pam'
|
||||
'squid.cron'
|
||||
'squid.service')
|
||||
md5sums=('859cf167499d8a5430070dbde78c8eea'
|
||||
'270977cdd9b47ef44c0c427ab9034777'
|
||||
'a71425c4951f2e5b640d19e6a5048531'
|
||||
'ceeb57c69ebb165676219222f109a24e')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
./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" \
|
||||
--enable-delay-pools \
|
||||
--enable-arp-acl \
|
||||
--enable-ssl \
|
||||
--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-strict-error-checking \
|
||||
--disable-arch-native
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
|
||||
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
|
||||
install -Dm755 "$srcdir/squid.cron" "$pkgdir/etc/cron.weekly/squid"
|
||||
install -Dm644 "$srcdir/squid.pam" "$pkgdir/etc/pam.d/squid"
|
||||
install -Dm644 "$srcdir/squid.service" \
|
||||
"$pkgdir/usr/lib/systemd/system/squid.service"
|
||||
rm -rf "$pkgdir/run" "$pkgdir/var/run"
|
||||
}
|
||||
|
||||
# vim: ts=2 sw=2 et ft=sh
|
|
@ -1,9 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# exit without error if no pidfile exists
|
||||
{ read pid </run/squid.pid; } 2>/dev/null || exit 0
|
||||
|
||||
# make sure found PID really is a squid process
|
||||
if [ /proc/$pid/exec -ef /usr/bin/squid ]; then
|
||||
/usr/bin/squid -k rotate
|
||||
fi
|
|
@ -1,26 +0,0 @@
|
|||
post_install() {
|
||||
if [ -z "$(grep ^proxy: /etc/group)" ]; then
|
||||
groupadd -g 15 proxy &>/dev/null
|
||||
fi
|
||||
|
||||
id proxy &>/dev/null || \
|
||||
useradd -u 15 -g proxy -d /var/empty proxy
|
||||
|
||||
chown proxy.proxy var/{cache,log}/squid
|
||||
|
||||
# cat << EOF
|
||||
#Release notes: http://www.squid-cache.org/Versions/v3/3.1/RELEASENOTES.html
|
||||
#EOF
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install $1
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
userdel proxy &> /dev/null
|
||||
if [ ! -z "$(grep ^proxy: /etc/group)" ]; then
|
||||
groupdel proxy &>/dev/null
|
||||
fi
|
||||
}
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
#/etc/pam.d/squid
|
||||
#
|
||||
auth required pam_unix.so
|
||||
account required pam_unix.so
|
|
@ -1,13 +0,0 @@
|
|||
[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
|
Loading…
Reference in a new issue