2013-07-02 11:28:47 +02:00
|
|
|
# Description: High performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library.
|
2016-06-12 14:48:27 +10:00
|
|
|
# URL: https://serf.apache.org/
|
2013-07-02 11:28:47 +02:00
|
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
2014-12-16 09:26:09 +00:00
|
|
|
# Depends on: apr scons
|
2013-07-02 11:28:47 +02:00
|
|
|
|
|
|
|
name=serf
|
2017-01-07 18:23:27 +11:00
|
|
|
version=1.3.9
|
2013-07-02 11:28:47 +02:00
|
|
|
release=1
|
2016-06-12 14:48:27 +10:00
|
|
|
source=(https://archive.apache.org/dist/$name/$name-$version.tar.bz2)
|
2013-07-02 11:28:47 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
2014-12-16 09:26:09 +00:00
|
|
|
# removes runtime path from shared library
|
|
|
|
sed '/Append/ s/RPATH=libdir,//' -i SConstruct
|
|
|
|
# disable building and installing of the static library
|
|
|
|
sed '/Default/ s/lib_static,//' -i SConstruct
|
|
|
|
sed '/Alias/ s/install_static,//' -i SConstruct
|
2013-07-02 11:28:47 +02:00
|
|
|
|
2014-12-16 09:26:09 +00:00
|
|
|
scons PREFIX=/usr LIBDIR=/usr/lib
|
|
|
|
scons install --install-sandbox=$PKG
|
2017-01-07 18:23:27 +11:00
|
|
|
|
|
|
|
# serf-1.3.9 do not install world writable files
|
|
|
|
chmod -cR go-w $PKG/usr/include/serf-1
|
2013-07-02 11:28:47 +02:00
|
|
|
}
|