summaryrefslogtreecommitdiff
path: root/extra/libasyncns/PKGBUILD
blob: 06ac6eaac09139d899cdd4e931a1fb1a453a6e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# $Id: PKGBUILD 99900 2010-11-19 13:00:38Z heftig $
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
# Contributor: Eric Belanger <belanger@astro.umontreal.ca>
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=libasyncns
pkgver=0.8
pkgrel=3
pkgdesc="A C library for Linux/Unix for executing name service queries asynchronously"
arch=('i686' 'x86_64')
url="http://0pointer.de/lennart/projects/libasyncns"
license=('LGPL')
options=('!libtool')
depends=('glibc')
source=(http://0pointer.de/lennart/projects/libasyncns/${pkgname}-${pkgver}.tar.gz)
md5sums=('1f553d6ce1ad255bc83b3d8e9384f515')

build() {
  cd ${srcdir}/libasyncns-${pkgver}
  ./configure --prefix=/usr --disable-lynx
  make
}

package() {
  cd ${srcdir}/libasyncns-${pkgver}
  make DESTDIR=${pkgdir} install
}