diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-21 11:26:12 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-21 11:26:12 -0300 |
commit | c0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (patch) | |
tree | 8e4f525a74e1ec4d373256b380f7d49305ed5d00 /community/pdnsd/PKGBUILD | |
parent | a05bf04c686ff44fc6c12fbe774d65032b74c55d (diff) | |
parent | 11484c032f8c236b2044e715a9a3b28e33f65598 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/6tunnel/PKGBUILD
community/chrootuid/PKGBUILD
community/cpulimit/PKGBUILD
community/cutter/PKGBUILD
community/darkhttpd/PKGBUILD
community/darkstat/PKGBUILD
community/datemath/PKGBUILD
community/delegate/PKGBUILD
community/dfm/PKGBUILD
community/freedroid/PKGBUILD
community/parano/PKGBUILD
community/pyvorbis/PKGBUILD
community/scrotwm/PKGBUILD
extra/antlr2/PKGBUILD
extra/live-media/PKGBUILD
extra/mono-zeroconf/PKGBUILD
extra/vlc/PKGBUILD
Diffstat (limited to 'community/pdnsd/PKGBUILD')
-rw-r--r-- | community/pdnsd/PKGBUILD | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/community/pdnsd/PKGBUILD b/community/pdnsd/PKGBUILD index 3b6a0d55a..d845da3fe 100644 --- a/community/pdnsd/PKGBUILD +++ b/community/pdnsd/PKGBUILD @@ -1,28 +1,29 @@ -# $Id: PKGBUILD 12265 2010-02-28 22:24:26Z spupykin $ +# $Id: PKGBUILD 65023 2012-02-20 02:00:25Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Henrik Nymann Jensen <h@henriknj.dk> pkgname=pdnsd pkgver=1.2.8 -pkgrel=1 +pkgrel=2 pkgdesc="Is a proxy DNS server with permanent caching" arch=(i686 x86_64 'mips64el') url="http://www.phys.uu.nl/~rombouts/pdnsd/" license=('GPL') depends=('glibc') -backup=('etc/pdnsd.conf') -source=(http://www.phys.uu.nl/~rombouts/pdnsd/releases/$pkgname-$pkgver-par.tar.gz pdnsd) +#backup=('etc/pdnsd.conf') +source=(http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-$pkgver-par.tar.gz + pdnsd) md5sums=('779c5d19576e561fbf2455de435e5597' '3670bd47c9303fbb655d9216715512de') build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr --sysconfdir=/etc - make || return 1 - make DESTDIR=$pkgdir install || return 1 + make + make DESTDIR=$pkgdir install - mkdir -p $pkgdir/etc/rc.d && \ - cp $srcdir/pdnsd $pkgdir/etc/rc.d/ && \ - mkdir -p $pkgdir/usr/share/ && \ + mkdir -p $pkgdir/etc/rc.d + cp $srcdir/pdnsd $pkgdir/etc/rc.d/ + mkdir -p $pkgdir/usr/share/ mv $pkgdir/usr/man $pkgdir/usr/share/ } |