diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-08 11:30:39 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-08 11:30:39 -0300 |
commit | 0f0bf3b7f0398f0882fa5b7cc3534180cabd9318 (patch) | |
tree | 968fcbe1bf470403a1ef1f4c261c0f1e8cf6b022 /testing | |
parent | e17d7021b82d5a27e1a236d14dd7a8567669e273 (diff) | |
parent | fe6dc99352fe2b801d251e55b2b8baa71441908e (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/fyre/PKGBUILD
extra/gnet/PKGBUILD
extra/kdeedu/PKGBUILD
extra/mhash/PKGBUILD
extra/rxvt-unicode/PKGBUILD
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libevent/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/libevent/PKGBUILD b/testing/libevent/PKGBUILD new file mode 100644 index 000000000..a7f9e724f --- /dev/null +++ b/testing/libevent/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 122876 2011-05-07 01:31:31Z eric $ +# Maintainer: +# Contributor: Judd <jvinet@zeroflux.org> + +pkgname=libevent +pkgver=2.0.11 +pkgrel=1 +pkgdesc="An event notification library" +arch=('i686' 'x86_64') +url="http://www.monkey.org/~provos/libevent/" +license=('GPL2') +depends=('openssl') +options=('!libtool') +source=("http://www.monkey.org/~provos/libevent-$pkgver-stable.tar.gz") +md5sums=('bd7ef33c08aa6401c8d67dbc88679ded') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}-stable" + sed -i 's#python#python2#' event_rpcgen.py + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}-stable" + make DESTDIR="${pkgdir}" install +} |