diff options
Diffstat (limited to 'extra/libasyncns/PKGBUILD')
-rw-r--r-- | extra/libasyncns/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/libasyncns/PKGBUILD b/extra/libasyncns/PKGBUILD new file mode 100644 index 000000000..06ac6eaac --- /dev/null +++ b/extra/libasyncns/PKGBUILD @@ -0,0 +1,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 +} |