# $Id: PKGBUILD 1486 2009-08-24 08:19:38Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Allan McRae # Contributor: Thomas Haider pkgname=libev pkgver=3.80 _pkgver=3.8 pkgrel=1 pkgdesc="A full-featured and high-performance event loop" arch=('i686' 'x86_64') url="http://software.schmorp.de/pkg/libev.html" license=('BSD') depends=('glibc') options=('!libtool') source=(http://dist.schmorp.de/${pkgname}/Attic/${pkgname}-${_pkgver}.tar.gz) md5sums=('4897453c077056769777d43e5495ded1') build() { cd "${srcdir}/${pkgname}-${_pkgver}" ./configure --prefix=/usr make || return 1 make DESTDIR="${pkgdir}" install # fix conflict with libevent rm ${pkgdir}/usr/include/event.h install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE }