diff options
Diffstat (limited to 'community/polipo/PKGBUILD')
-rw-r--r-- | community/polipo/PKGBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/community/polipo/PKGBUILD b/community/polipo/PKGBUILD new file mode 100644 index 000000000..d09f48478 --- /dev/null +++ b/community/polipo/PKGBUILD @@ -0,0 +1,48 @@ +# Maintainer: Jelle van der Waa <jelle vdwaa nl> +# Contributor: Thomas Holmquist <thomas@vorget.com> +# Contributor: Jan Boehringer <ja(a)bm-boehringer.de> +# Contributor: Alex Griffin <griffin.aj(a)gmail.com> + +pkgname=polipo +pkgver=1.0.4.1 +pkgrel=1 +pkgdesc="A small and fast caching web proxy." +arch=('i686' 'x86_64') +url="http://www.pps.jussieu.fr/~jch/software/polipo/" +license=('GPL') +depends=('glibc' 'bash') +makedepends=(texinfo) +install=polipo.install +source=(http://freehaven.net/~chrisd/polipo/polipo-$pkgver.tar.gz + polipo.cron polipo.rc.d) +md5sums=('bfc5c85289519658280e093a270d6703' + 'bac0e1a871964c931eb5f7a369b3243c' + '443e442f7071e31dbd53fc9d810a2c3e') +conflicts=('polipo-git' 'polipo-darcs') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + make all + + make PREFIX="$pkgdir/usr" \ + MANDIR="$pkgdir/usr/share/man" \ + INFODIR="$pkgdir/usr/share/info" \ + LOCAL_ROOT="$pkgdir/usr/share/polipo/www" \ + DISK_CACHE_ROOT="$pkgdir/var/cache/polipo" \ + install + + + # install config files + install -Dm 644 config.sample $pkgdir/etc/polipo/config.sample + install -Dm 644 forbidden.sample $pkgdir/etc/polipo/forbidden.sample + + # install license + install -Dm644 COPYING $pkgdir/usr/share/licenses/polipo/LICENSE + + # install daemon scripts / cron + install -Dm 755 $srcdir/polipo.rc.d $pkgdir/etc/rc.d/polipo + install -Dm 755 $srcdir/polipo.cron $pkgdir/usr/share/polipo/polipo.cron + + +} |