core/serf/PKGBUILD

31 lines
627 B
Bash
Raw Normal View History

# Maintainer: almack <almack@chakraos.org>
pkgname=serf
pkgver=1.3.4
pkgrel=1
pkgdesc="High-performance asynchronous HTTP client library"
arch=('x86_64')
url="http://code.google.com/p/serf/"
license=('Apache')
depends=('apr-util')
makedepends=('scons')
options=('!staticlibs')
source=(http://serf.googlecode.com/svn/src_releases/${pkgname}-${pkgver}.zip)
md5sums=('f2d469ac03db98781c9d414fed5368ae')
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
}