diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libev |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libev')
-rw-r--r-- | community/libev/PKGBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/community/libev/PKGBUILD b/community/libev/PKGBUILD new file mode 100644 index 000000000..4ab23a1ef --- /dev/null +++ b/community/libev/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 32688 2010-11-16 16:50:22Z lcarlier $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: Thomas Haider <t.haider@vcnc.org> + +pkgname=libev +pkgver=4.01 +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' 'force') +source=(http://dist.schmorp.de/${pkgname}/${pkgname}-${pkgver}.tar.gz) +md5sums=('2a6e0d3d7eda7d54b39f3800b8279707') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + + # fix conflict with libevent + rm ${pkgdir}/usr/include/event.h + + install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE +} |