diff options
author | Jose V Beneyto <jose.beneyto@eslife.es> | 2014-12-16 09:26:09 +0000 |
---|---|---|
committer | Jose V Beneyto <jose.beneyto@eslife.es> | 2014-12-16 09:26:09 +0000 |
commit | 31ed6677d89429dfb76da11e70de0350e4ce8e94 (patch) | |
tree | 0c25e49658c49af44a59cedb2fe5d9d8b29f08fc /serf | |
parent | b118d6511fd0eeb1c1fc33f00b67a45b65e4943e (diff) | |
download | opt-31ed6677d89429dfb76da11e70de0350e4ce8e94.tar.gz opt-31ed6677d89429dfb76da11e70de0350e4ce8e94.tar.xz |
[notify] serf: updated to 1.3.8
Added new dependency: scons
Diffstat (limited to 'serf')
-rw-r--r-- | serf/.footprint | 8 | ||||
-rw-r--r-- | serf/.md5sum | 2 | ||||
-rw-r--r-- | serf/Pkgfile | 16 |
3 files changed, 14 insertions, 12 deletions
diff --git a/serf/.footprint b/serf/.footprint index 8f9dcb29a..aef689d72 100644 --- a/serf/.footprint +++ b/serf/.footprint @@ -5,10 +5,8 @@ drwxr-xr-x root/root usr/include/serf-1/ -rw-r--r-- root/root usr/include/serf-1/serf_bucket_types.h -rw-r--r-- root/root usr/include/serf-1/serf_bucket_util.h drwxr-xr-x root/root usr/lib/ --rw-r--r-- root/root usr/lib/libserf-1.a --rw-r--r-- root/root usr/lib/libserf-1.la -lrwxrwxrwx root/root usr/lib/libserf-1.so -> libserf-1.so.0.0.0 -lrwxrwxrwx root/root usr/lib/libserf-1.so.0 -> libserf-1.so.0.0.0 --rw-r--r-- root/root usr/lib/libserf-1.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libserf-1.so -> libserf-1.so.1.3.0 +lrwxrwxrwx root/root usr/lib/libserf-1.so.1 -> libserf-1.so.1.3.0 +-rwxr-xr-x root/root usr/lib/libserf-1.so.1.3.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/serf-1.pc diff --git a/serf/.md5sum b/serf/.md5sum index c73bbab10..1b5a3d1e3 100644 --- a/serf/.md5sum +++ b/serf/.md5sum @@ -1 +1 @@ -4f8e76c9c6567aee1d66aba49f76a58b serf-1.2.1.tar.bz2 +2e4efe57ff28cb3202a112e90f0c2889 serf-1.3.8.tar.bz2 diff --git a/serf/Pkgfile b/serf/Pkgfile index fb364997c..ea41eb9cf 100644 --- a/serf/Pkgfile +++ b/serf/Pkgfile @@ -2,18 +2,22 @@ # URL: https://code.google.com/p/serf/ # Maintainer: Jose V Beneyto, sepen at crux dot nu # Packager: Jose V Beneyto, sepen at crux dot nu -# Depends on: apr +# Depends on: apr scons name=serf -version=1.2.1 +version=1.3.8 release=1 -source=(https://serf.googlecode.com/files/$name-$version.tar.bz2) +source=(https://serf.googlecode.com/svn/src_releases/$name-$version.tar.bz2) build() { cd $name-$version - ./configure --prefix=/usr + # 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 - make - make DESTDIR=$PKG install + scons PREFIX=/usr LIBDIR=/usr/lib + scons install --install-sandbox=$PKG } |