updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / php52-libevent / PKGBUILD
blob9ea8c36e1781facf655d1b2198163d2e9ec7c790
1 # Contributor: LD King <kldscs@gmail.com>
3 pkgname=php52-libevent
4 pkgver=0.0.4
5 pkgrel=1
6 pkgdesc="Libevent is a library that provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached."
7 arch=('i686' 'x86_64')
8 url="http://pecl.php.net/package/libevent"
9 license=('PHP')
10 depends=('php52' 'libevent')
11 backup=('etc/php/conf.d/libevent.ini')
12 install=php52-libevent.install
13 source=(http://pecl.php.net/get/libevent-$pkgver.tgz)
14 md5sums=('ab19ae2a0ddbbf2465addae64ccee56d')
16 build() {
17   cd "$srcdir/libevent-$pkgver"
19   phpize || return 1
20   ./configure --prefix=/usr
21   make || return 1
22   make INSTALL_ROOT="$pkgdir" install
23   echo ';extension=libevent.so' > libevent.ini
24   install -D -m644 libevent.ini "$pkgdir/etc/php/conf.d/libevent.ini"
27 # vim:set ts=2 sw=2 et: