# $Id: PKGBUILD 193131 2013-08-17 07:19:26Z angvp $ # Maintainer: Stéphane Gaudreault pkgname=serf pkgver=1.3.0 pkgrel=1 pkgdesc="High-performance asynchronous HTTP client library" arch=('i686' 'x86_64') url="http://code.google.com/p/serf/" license=('Apache') depends=('apr-util') makedepends=('scons') options=('!libtool' '!staticlibs') source=(http://serf.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2) sha1sums=('14ed3e1dc195016a548499b3831f3df6b2501d27') build() { cd ${pkgname}-${pkgver} scons PREFIX=/usr } check() { cd ${pkgname}-${pkgver} scons check } package() { cd ${pkgname}-${pkgver} install -d "${pkgdir}/usr" scons PREFIX="${pkgdir}/usr" install }