blob: cc509c3385daca93cef5978aa267ec78f230c6c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $Id$
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
pkgname=serf
pkgver=1.3.9
pkgrel=2
pkgdesc="High-performance asynchronous HTTP client library"
arch=('x86_64')
url="https://serf.apache.org"
license=('Apache')
depends=('apr-util')
makedepends=('scons')
source=(https://www.apache.org/dist/serf/${pkgname}-${pkgver}.tar.bz2{,.asc})
validpgpkeys=('C236283C970D2C3CFEEB4936BF35CF0078383142')
sha256sums=('549c2d21c577a8a9c0450facb5cca809f26591f048e466552240947bdf7a87cc'
'SKIP')
build() {
cd ${pkgname}-${pkgver}
scons CFLAGS="${CFLAGS}" \
LINKFLAGS="${LDFLAGS}" \
PREFIX=/usr GSSAPI=/usr/bin/krb5-config
}
check() {
cd ${pkgname}-${pkgver}
# Runs into infinite loop
#scons check
}
package() {
cd ${pkgname}-${pkgver}
install -d "${pkgdir}/usr"
scons install --install-sandbox="${pkgdir}"
}
|