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/adns | |
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/adns')
-rw-r--r-- | community/adns/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/adns/PKGBUILD b/community/adns/PKGBUILD index 4e2dacb81..46df37239 100644 --- a/community/adns/PKGBUILD +++ b/community/adns/PKGBUILD @@ -1,9 +1,11 @@ -# $Id: PKGBUILD 17373 2010-05-24 09:43:07Z spupykin $ +# $Id: PKGBUILD 65027 2012-02-20 02:05:52Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: dorphell <dorphell@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> + pkgname=adns pkgver=1.4 -pkgrel=2 +pkgrel=3 pkgdesc="adns is an asyncronous replacement resolver library" arch=('i686' 'x86_64' 'mips64el') url="http://www.chiark.greenend.org.uk/~ian/adns/" @@ -13,9 +15,9 @@ source=(http://www.chiark.greenend.org.uk/~ian/$pkgname/ftp/$pkgname-$pkgver.tar md5sums=('88bc7bbf3f62a8d4fb186b8f72ead853') build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr - make || return 1 - mkdir -p $startdir/pkg/usr/{lib,include,bin} - make prefix=$startdir/pkg/usr install + make + mkdir -p $pkgdir/usr/{lib,include,bin} + make prefix=$pkgdir/usr install } |