diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-22 23:09:46 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-22 23:09:46 -0300 |
commit | f87cdf22eb712b5b1c118f768d4ff710fc839403 (patch) | |
tree | 023ff68dc2d6efdb25a8ab8b182a14b8d6a55889 /community/polipo/PKGBUILD | |
parent | 290a8b0dd73569b6b2d9855be9638d3338c566e0 (diff) | |
parent | 1d9fb21dff6df1679e536ab672edcbbdb4cf3a15 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/arp-scan/PKGBUILD
community/curlftpfs/PKGBUILD
community/dtach/PKGBUILD
community/espeakup/PKGBUILD
community/g2sc/PKGBUILD
community/judy/PKGBUILD
community/python-fuse/PKGBUILD
community/sisctrl/PKGBUILD
extra/avahi/PKGBUILD
extra/kdesdk/PKGBUILD
extra/nasm/PKGBUILD
multilib/lib32-p11-kit/PKGBUILD
multilib/lib32-pixman/PKGBUILD
testing/xf86-input-synaptics/PKGBUILD
Diffstat (limited to 'community/polipo/PKGBUILD')
-rw-r--r-- | community/polipo/PKGBUILD | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/community/polipo/PKGBUILD b/community/polipo/PKGBUILD index 20d910287..99ee6d8c5 100644 --- a/community/polipo/PKGBUILD +++ b/community/polipo/PKGBUILD @@ -1,16 +1,18 @@ -# Maintainer: Jelle van der Waa <jelle vdwaa nl> +# $Id: PKGBUILD 65625 2012-02-21 12:15:55Z ttopper $ +# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de> +# Contributor: 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 +pkgrel=2 pkgdesc="A small and fast caching web proxy." arch=('i686' 'x86_64' 'mips64el') url="http://www.pps.jussieu.fr/~jch/software/polipo/" license=('GPL') -depends=('glibc' 'bash') +depends=('bash') makedepends=(texinfo) install=polipo.install source=(http://freehaven.net/~chrisd/polipo/polipo-$pkgver.tar.gz @@ -23,8 +25,11 @@ conflicts=('polipo-git' 'polipo-darcs') build() { cd "$srcdir/$pkgname-$pkgver" - make all + make +} +package() { + cd "$srcdir/$pkgname-$pkgver" make PREFIX="$pkgdir/usr" \ MANDIR="$pkgdir/usr/share/man" \ INFODIR="$pkgdir/usr/share/info" \ @@ -43,6 +48,6 @@ build() { # 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 - - } + +# vim:set ts=2 sw=2 et: |